(self)
| 6 | class DirBuster(ServiceScan): |
| 7 | |
| 8 | def __init__(self): |
| 9 | super().__init__() |
| 10 | self.name = "Directory Buster" |
| 11 | self.slug = 'dirbuster' |
| 12 | self.priority = 0 |
| 13 | self.tags = ['default', 'safe', 'long', 'http'] |
| 14 | |
| 15 | def configure(self): |
| 16 | self.add_choice_option('tool', default='feroxbuster', choices=['feroxbuster', 'gobuster', 'dirsearch', 'ffuf', 'dirb'], help='The tool to use for directory busting. Default: %(default)s') |
nothing calls this directly
no outgoing calls
no test coverage detected