MCPcopy Create free account
hub / github.com/AutoRecon/AutoRecon / __init__

Method __init__

autorecon/default-plugins/dirbuster.py:8–13  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

6class 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')

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected