secator 0.11.1__py3-none-any.whl → 0.13.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of secator might be problematic. Click here for more details.
- secator/cli.py +175 -66
- secator/config.py +1 -0
- secator/configs/workflows/host_recon.yaml +11 -2
- secator/configs/workflows/port_scan.yaml +39 -0
- secator/configs/workflows/url_dirsearch.yaml +5 -0
- secator/configs/workflows/url_params_fuzz.yaml +2 -0
- secator/decorators.py +39 -21
- secator/definitions.py +0 -4
- secator/installer.py +29 -15
- secator/runners/_base.py +2 -1
- secator/runners/_helpers.py +13 -2
- secator/runners/command.py +3 -1
- secator/tasks/_categories.py +2 -2
- secator/tasks/arjun.py +11 -2
- secator/tasks/bbot.py +30 -4
- secator/tasks/bup.py +2 -1
- secator/tasks/cariddi.py +15 -3
- secator/tasks/dalfox.py +2 -1
- secator/tasks/dirsearch.py +1 -1
- secator/tasks/dnsx.py +2 -1
- secator/tasks/dnsxbrute.py +2 -1
- secator/tasks/feroxbuster.py +3 -2
- secator/tasks/ffuf.py +2 -1
- secator/tasks/gau.py +2 -1
- secator/tasks/gitleaks.py +4 -3
- secator/tasks/gospider.py +3 -2
- secator/tasks/grype.py +1 -0
- secator/tasks/h8mail.py +2 -1
- secator/tasks/httpx.py +3 -2
- secator/tasks/katana.py +4 -3
- secator/tasks/maigret.py +1 -1
- secator/tasks/mapcidr.py +2 -1
- secator/tasks/msfconsole.py +4 -3
- secator/tasks/naabu.py +4 -2
- secator/tasks/nuclei.py +15 -9
- secator/tasks/searchsploit.py +3 -2
- secator/tasks/subfinder.py +2 -1
- secator/tasks/testssl.py +4 -3
- secator/tasks/trivy.py +2 -2
- secator/tasks/wafw00f.py +2 -1
- secator/tasks/wpprobe.py +2 -1
- secator/tasks/wpscan.py +6 -3
- secator/template.py +12 -0
- {secator-0.11.1.dist-info → secator-0.13.0.dist-info}/METADATA +1 -1
- {secator-0.11.1.dist-info → secator-0.13.0.dist-info}/RECORD +48 -47
- {secator-0.11.1.dist-info → secator-0.13.0.dist-info}/WHEEL +0 -0
- {secator-0.11.1.dist-info → secator-0.13.0.dist-info}/entry_points.txt +0 -0
- {secator-0.11.1.dist-info → secator-0.13.0.dist-info}/licenses/LICENSE +0 -0
secator/tasks/nuclei.py
CHANGED
|
@@ -18,17 +18,22 @@ class nuclei(VulnMulti):
|
|
|
18
18
|
input_flag = '-u'
|
|
19
19
|
json_flag = '-jsonl'
|
|
20
20
|
opts = {
|
|
21
|
-
'
|
|
22
|
-
'tags': {'type': str, 'help': 'Tags'},
|
|
23
|
-
'exclude_tags': {'type': str, 'short': 'etags', 'help': 'Exclude tags'},
|
|
24
|
-
'exclude_severity': {'type': str, 'short': 'es', 'help': 'Exclude severity'},
|
|
25
|
-
'template_id': {'type': str, 'short': 'tid', 'help': 'Template id'},
|
|
21
|
+
'bulk_size': {'type': int, 'short': 'bs', 'help': 'Maximum number of hosts to be analyzed in parallel per template'}, # noqa: E501
|
|
26
22
|
'debug': {'type': str, 'help': 'Debug mode'},
|
|
23
|
+
'exclude_severity': {'type': str, 'short': 'es', 'help': 'Exclude severity'},
|
|
24
|
+
'exclude_tags': {'type': str, 'short': 'etags', 'help': 'Exclude tags'},
|
|
25
|
+
'input_mode': {'type': str, 'short': 'im', 'help': 'Mode of input file (list, burp, jsonl, yaml, openapi, swagger)'},
|
|
26
|
+
'hang_monitor': {'is_flag': True, 'short': 'hm', 'default': True, 'help': 'Enable nuclei hang monitoring'},
|
|
27
|
+
'headless_bulk_size': {'type': int, 'short': 'hbs', 'help': 'Maximum number of headless hosts to be analzyed in parallel per template'}, # noqa: E501
|
|
28
|
+
'new_templates': {'type': str, 'short': 'nt', 'help': 'Run only new templates added in latest nuclei-templates release'}, # noqa: E501
|
|
29
|
+
'automatic_scan': {'is_flag': True, 'short': 'as', 'help': 'Automatic web scan using wappalyzer technology detection to tags mapping'}, # noqa: E501
|
|
30
|
+
'omit_raw': {'is_flag': True, 'short': 'or', 'default': True, 'help': 'Omit requests/response pairs in the JSON, JSONL, and Markdown outputs (for findings only)'}, # noqa: E501
|
|
27
31
|
'stats': {'is_flag': True, 'short': 'stats', 'default': True, 'help': 'Display statistics about the running scan'},
|
|
28
32
|
'stats_json': {'is_flag': True, 'short': 'sj', 'default': True, 'help': 'Display statistics in JSONL(ines) format'},
|
|
29
|
-
'stats_interval': {'type': str, 'short': 'si', '
|
|
30
|
-
'
|
|
31
|
-
'
|
|
33
|
+
'stats_interval': {'type': str, 'short': 'si', 'help': 'Number of seconds to wait between showing a statistics update'}, # noqa: E501
|
|
34
|
+
'tags': {'type': str, 'help': 'Tags'},
|
|
35
|
+
'templates': {'type': str, 'short': 't', 'help': 'Templates'},
|
|
36
|
+
'template_id': {'type': str, 'short': 'tid', 'help': 'Template id'},
|
|
32
37
|
}
|
|
33
38
|
opt_key_map = {
|
|
34
39
|
HEADER: 'header',
|
|
@@ -76,7 +81,8 @@ class nuclei(VulnMulti):
|
|
|
76
81
|
install_pre = {
|
|
77
82
|
'*': ['git']
|
|
78
83
|
}
|
|
79
|
-
|
|
84
|
+
install_version = 'v3.4.2'
|
|
85
|
+
install_cmd = 'go install -v github.com/projectdiscovery/nuclei/v3/cmd/nuclei@[install_version]'
|
|
80
86
|
install_github_handle = 'projectdiscovery/nuclei'
|
|
81
87
|
install_post = {
|
|
82
88
|
'*': 'nuclei -ut'
|
secator/tasks/searchsploit.py
CHANGED
|
@@ -41,9 +41,10 @@ class searchsploit(Command):
|
|
|
41
41
|
install_pre = {
|
|
42
42
|
'apk': ['ncurses']
|
|
43
43
|
}
|
|
44
|
+
install_version = '2025-04-23'
|
|
44
45
|
install_cmd = (
|
|
45
|
-
f'git clone --depth 1 --single-branch https://gitlab.com/exploit-database/exploitdb.git {CONFIG.dirs.share}/
|
|
46
|
-
f'ln -sf $HOME/.local/share/
|
|
46
|
+
f'git clone --depth 1 --single-branch -b [install_version] https://gitlab.com/exploit-database/exploitdb.git {CONFIG.dirs.share}/exploitdb_[install_version] || true && ' # noqa: E501
|
|
47
|
+
f'ln -sf $HOME/.local/share/exploitdb_[install_version]/searchsploit {CONFIG.dirs.bin}/searchsploit'
|
|
47
48
|
)
|
|
48
49
|
proxychains = False
|
|
49
50
|
proxy_socks5 = False
|
secator/tasks/subfinder.py
CHANGED
|
@@ -31,7 +31,8 @@ class subfinder(ReconDns):
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
output_types = [Subdomain]
|
|
34
|
-
|
|
34
|
+
install_version = 'v2.7.0'
|
|
35
|
+
install_cmd = 'go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@[install_version]'
|
|
35
36
|
install_github_handle = 'projectdiscovery/subfinder'
|
|
36
37
|
proxychains = False
|
|
37
38
|
proxy_http = True
|
secator/tasks/testssl.py
CHANGED
|
@@ -48,13 +48,14 @@ class testssl(Command):
|
|
|
48
48
|
proxy_socks5 = False
|
|
49
49
|
profile = 'io'
|
|
50
50
|
install_pre = {
|
|
51
|
-
'apk': ['hexdump'],
|
|
51
|
+
'apk': ['hexdump', 'coreutils', 'procps'],
|
|
52
52
|
'pacman': ['util-linux'],
|
|
53
53
|
'*': ['bsdmainutils']
|
|
54
54
|
}
|
|
55
|
+
install_version = 'v3.2.0'
|
|
55
56
|
install_cmd = (
|
|
56
|
-
f'git clone --depth 1 https://github.com/drwetter/testssl.sh.git {CONFIG.dirs.share}/testssl.
|
|
57
|
-
f'ln -sf {CONFIG.dirs.share}/testssl.
|
|
57
|
+
f'git clone --depth 1 --single-branch -b [install_version] https://github.com/drwetter/testssl.sh.git {CONFIG.dirs.share}/testssl.sh_[install_version] || true && ' # noqa: E501
|
|
58
|
+
f'ln -sf {CONFIG.dirs.share}/testssl.sh_[install_version]/testssl.sh {CONFIG.dirs.bin}'
|
|
58
59
|
)
|
|
59
60
|
|
|
60
61
|
@staticmethod
|
secator/tasks/trivy.py
CHANGED
|
@@ -31,12 +31,12 @@ class trivy(Vuln):
|
|
|
31
31
|
USER_AGENT: OPT_NOT_SUPPORTED
|
|
32
32
|
}
|
|
33
33
|
output_types = [Tag, Vulnerability]
|
|
34
|
+
install_version = 'v0.61.1'
|
|
34
35
|
install_cmd = (
|
|
35
36
|
'curl -sfL https://raw.githubusercontent.com/aquasecurity/trivy/main/contrib/install.sh |'
|
|
36
|
-
f'sudo sh -s -- -b {CONFIG.dirs.bin}
|
|
37
|
+
f'sudo sh -s -- -b {CONFIG.dirs.bin} [install_version]'
|
|
37
38
|
)
|
|
38
39
|
install_github_handle = 'aquasecurity/trivy'
|
|
39
|
-
install_github_handle = 'aquasecurity/trivy'
|
|
40
40
|
|
|
41
41
|
@staticmethod
|
|
42
42
|
def on_cmd(self):
|
secator/tasks/wafw00f.py
CHANGED
|
@@ -37,7 +37,8 @@ class wafw00f(Command):
|
|
|
37
37
|
'no_follow_redirects': 'noredirect',
|
|
38
38
|
}
|
|
39
39
|
output_types = [Tag]
|
|
40
|
-
|
|
40
|
+
install_version = 'v2.3.1'
|
|
41
|
+
install_cmd = 'pipx install git+https://github.com/EnableSecurity/wafw00f.git@[install_version] --force'
|
|
41
42
|
install_github_handle = 'EnableSecurity/wafw00f'
|
|
42
43
|
proxy_http = True
|
|
43
44
|
|
secator/tasks/wpprobe.py
CHANGED
|
@@ -27,7 +27,8 @@ class wpprobe(Command):
|
|
|
27
27
|
THREADS: 't'
|
|
28
28
|
}
|
|
29
29
|
output_types = [Vulnerability, Tag]
|
|
30
|
-
|
|
30
|
+
install_version = 'v0.5.6'
|
|
31
|
+
install_cmd = 'go install github.com/Chocapikk/wpprobe@[install_version]'
|
|
31
32
|
install_github_handle = 'Chocapikk/wpprobe'
|
|
32
33
|
install_post = {
|
|
33
34
|
'*': 'wpprobe update && wpprobe update-db'
|
secator/tasks/wpscan.py
CHANGED
|
@@ -16,7 +16,7 @@ from secator.tasks._categories import VulnHttp
|
|
|
16
16
|
@task()
|
|
17
17
|
class wpscan(VulnHttp):
|
|
18
18
|
"""Wordpress security scanner."""
|
|
19
|
-
cmd = 'wpscan --
|
|
19
|
+
cmd = 'wpscan --force --verbose'
|
|
20
20
|
file_flag = None
|
|
21
21
|
input_flag = '--url'
|
|
22
22
|
input_type = URL
|
|
@@ -30,7 +30,9 @@ class wpscan(VulnHttp):
|
|
|
30
30
|
'passwords': {'type': str, 'help': 'List of passwords to use during the password attack.'},
|
|
31
31
|
'usernames': {'type': str, 'help': 'List of usernames to use during the password attack.'},
|
|
32
32
|
'login_uri': {'type': str, 'short': 'lu', 'help': 'URI of the login page if different from /wp-login.php'},
|
|
33
|
-
'detection_mode': {'type': str, 'short': 'dm', 'help': 'Detection mode between mixed, passive, and aggressive'}
|
|
33
|
+
'detection_mode': {'type': str, 'short': 'dm', 'help': 'Detection mode between mixed, passive, and aggressive'},
|
|
34
|
+
'random_user_agent': {'is_flag': True, 'short': 'rua', 'help': 'Random user agent'},
|
|
35
|
+
'disable_tls_checks': {'is_flag': True, 'short': 'dtc', 'help': 'Disable TLS checks'}
|
|
34
36
|
}
|
|
35
37
|
opt_key_map = {
|
|
36
38
|
HEADER: OPT_NOT_SUPPORTED,
|
|
@@ -72,7 +74,8 @@ class wpscan(VulnHttp):
|
|
|
72
74
|
'pacman': ['make', 'ruby-erb'],
|
|
73
75
|
'*': ['make']
|
|
74
76
|
}
|
|
75
|
-
|
|
77
|
+
install_version = '3.8.28'
|
|
78
|
+
install_cmd = f'gem install wpscan -v [install_version] --user-install -n {CONFIG.dirs.bin}'
|
|
76
79
|
install_post = {
|
|
77
80
|
'kali': (
|
|
78
81
|
f'gem uninstall nokogiri --user-install -n {CONFIG.dirs.bin} --force --executables && '
|
secator/template.py
CHANGED
|
@@ -30,6 +30,7 @@ class TemplateLoader(DotMap):
|
|
|
30
30
|
config = input
|
|
31
31
|
elif isinstance(input, Path) or Path(input).exists():
|
|
32
32
|
config = self._load_from_path(input)
|
|
33
|
+
config['_path'] = str(input)
|
|
33
34
|
elif isinstance(input, str):
|
|
34
35
|
config = self._load(input)
|
|
35
36
|
super().__init__(config, **kwargs)
|
|
@@ -57,6 +58,17 @@ class TemplateLoader(DotMap):
|
|
|
57
58
|
"""Property to access tasks easily."""
|
|
58
59
|
return self._extract_tasks()
|
|
59
60
|
|
|
61
|
+
def print(self):
|
|
62
|
+
"""Print config as highlighted yaml."""
|
|
63
|
+
config = self.toDict()
|
|
64
|
+
_path = config.pop('_path', None)
|
|
65
|
+
if _path:
|
|
66
|
+
console.print(f'[italic green]{_path}[/]\n')
|
|
67
|
+
yaml_str = yaml.dump(config, indent=4)
|
|
68
|
+
from rich.syntax import Syntax
|
|
69
|
+
yaml_highlight = Syntax(yaml_str, 'yaml', line_numbers=True)
|
|
70
|
+
console.print(yaml_highlight)
|
|
71
|
+
|
|
60
72
|
def _collect_supported_opts(self):
|
|
61
73
|
"""Collect supported options from the tasks extracted from the config."""
|
|
62
74
|
tasks = self._extract_tasks()
|
|
@@ -3,14 +3,14 @@ secator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
3
3
|
secator/celery.py,sha256=Xg8e0zpQu4_-jlsZeC65NZtkopHGsGIyQ3SiW5fyH4E,9771
|
|
4
4
|
secator/celery_signals.py,sha256=hG62Gr34xKJYZTgZFn_wZcsAlMgKuTazQhx55FC5cDA,4259
|
|
5
5
|
secator/celery_utils.py,sha256=_wcUC42VPUotPhh9YYqbuq0dkARI8_RoCklDlhQL9Jg,8903
|
|
6
|
-
secator/cli.py,sha256=
|
|
7
|
-
secator/config.py,sha256=
|
|
8
|
-
secator/decorators.py,sha256=
|
|
9
|
-
secator/definitions.py,sha256=
|
|
10
|
-
secator/installer.py,sha256=
|
|
6
|
+
secator/cli.py,sha256=AuAsrI2asH359Jnkzo9iek_3H2kdN_L0fzr1i9LpMdw,50827
|
|
7
|
+
secator/config.py,sha256=t3RJhfVKIoEcfDWBsYlFzz29BM3dsvJtGFzwTYL0Cfc,19727
|
|
8
|
+
secator/decorators.py,sha256=sI1bbWm5g2SOb3EfHlvG37aY0SRK7EUzIiHLK0deACw,14583
|
|
9
|
+
secator/definitions.py,sha256=qE_ZjzGcfrdASL7wjrc_0zoszUovL00KP--kGjDr93w,2986
|
|
10
|
+
secator/installer.py,sha256=UBlQdcTvYXjmCiTui_fk9DOOxJ4Vs8i70m0ZCVFV78Q,19633
|
|
11
11
|
secator/report.py,sha256=55xKvYY0MKNPaEgTrx66mj-Siohx3drLbTX2LpEx6zs,3627
|
|
12
12
|
secator/rich.py,sha256=0P6TECNePsfivc5h1JsJoAqKmpFnME5m8k29ZJjvbwM,3277
|
|
13
|
-
secator/template.py,sha256=
|
|
13
|
+
secator/template.py,sha256=tDXpC02h6F9-_5YXlQK_nDkGde9LM6yRf7dEyJzHFps,4550
|
|
14
14
|
secator/thread.py,sha256=rgRgEtcMgs2wyfLWVlCTUCLWeg6jsMo5iKpyyrON5rY,655
|
|
15
15
|
secator/utils.py,sha256=kaBqWgBmUZohlvn6nFY805tG26viIu_LdJysNfZWMY4,22055
|
|
16
16
|
secator/utils_test.py,sha256=jiCvgL4JMhIC1-ZGe6j9umNRZreSDp6nlkMgEJhf5ho,7996
|
|
@@ -28,14 +28,15 @@ secator/configs/scans/url.yaml,sha256=zhRiqyHq7BZHtKsmjpMvp3vmt5DRNtmfqW44sZm1tW
|
|
|
28
28
|
secator/configs/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
29
|
secator/configs/workflows/cidr_recon.yaml,sha256=ytmirZxtJ8lKnzdo83mwTHOhy1OpnltuN3HFkk6XwzI,557
|
|
30
30
|
secator/configs/workflows/code_scan.yaml,sha256=3H8H55NVskiDbBwNueVF8FUYkquEQn2C6evnid9zhB4,207
|
|
31
|
-
secator/configs/workflows/host_recon.yaml,sha256=
|
|
31
|
+
secator/configs/workflows/host_recon.yaml,sha256=6RcH4RwCmTgesWVu8NrVIgW2ifNC4kSKgiRkNwZECdg,1173
|
|
32
|
+
secator/configs/workflows/port_scan.yaml,sha256=J6-MPpPPfwFAIKf21gXMLu1wkprvZNAfDA_U90eXKJk,951
|
|
32
33
|
secator/configs/workflows/subdomain_recon.yaml,sha256=GFhAyatzWRVx3a2kphNWNoTB13wY3GZTSZ2tusFgo8E,722
|
|
33
34
|
secator/configs/workflows/url_bypass.yaml,sha256=_uBzDhevJ2DOD9UkE25n7ZrmnjjfdU3lV3mnUudgdU0,180
|
|
34
35
|
secator/configs/workflows/url_crawl.yaml,sha256=h74dvDBNLuY1EHc9FMby3ydr34VH1qFJHQKUaIIYpcw,573
|
|
35
|
-
secator/configs/workflows/url_dirsearch.yaml,sha256=
|
|
36
|
+
secator/configs/workflows/url_dirsearch.yaml,sha256=VkNvJKoJTriuHXFiAdQHwUXB6EAyvg9dimVzfW3Sg-c,727
|
|
36
37
|
secator/configs/workflows/url_fuzz.yaml,sha256=K1RkplXrgc7q2YJVv5A6B5MMkAzIIv31HInhRCKMpyI,774
|
|
37
38
|
secator/configs/workflows/url_nuclei.yaml,sha256=Qigz-hJzM7GeNA_UD46dThVIoqbWlBgiYb_i5fSyJiI,265
|
|
38
|
-
secator/configs/workflows/url_params_fuzz.yaml,sha256=
|
|
39
|
+
secator/configs/workflows/url_params_fuzz.yaml,sha256=Kc87pZ3w2GQeZl1QVxKeebaTDMOtYlTk-mlOfe-uOBM,700
|
|
39
40
|
secator/configs/workflows/url_vuln.yaml,sha256=_nX_D96NbD8fHU4wXov7ZHD1cmiFgKc86Mh0enWGS7s,1354
|
|
40
41
|
secator/configs/workflows/user_hunt.yaml,sha256=e5b-CkkjhOPE8Yh5LUh0K60GKmxTgn4s-Joo7m9jKrk,180
|
|
41
42
|
secator/configs/workflows/wordpress.yaml,sha256=m80JdK2G9O5TGxk_BTiRjzhrXrLJQz0a1foIOQTKp3U,341
|
|
@@ -70,10 +71,10 @@ secator/output_types/user_account.py,sha256=EvF3Ebg9eXS_-iDguU1dSHZ9wAsJimEJznDv
|
|
|
70
71
|
secator/output_types/vulnerability.py,sha256=nF7OT9zGez8sZvLrkhjBOORjVi8hCqfCYUFq3eZ_ywo,2870
|
|
71
72
|
secator/output_types/warning.py,sha256=47GtmG083GqGPb_R5JDFmARJ9Mqrme58UxwJhgdGPuI,853
|
|
72
73
|
secator/runners/__init__.py,sha256=EBbOk37vkBy9p8Hhrbi-2VtM_rTwQ3b-0ggTyiD22cE,290
|
|
73
|
-
secator/runners/_base.py,sha256=
|
|
74
|
-
secator/runners/_helpers.py,sha256=
|
|
74
|
+
secator/runners/_base.py,sha256=XAG84cFw85g5D4fKjKTWW1OeOWJHX48px_vi9MN7QO0,31727
|
|
75
|
+
secator/runners/_helpers.py,sha256=FoawlexiNl1-QMBfwBx0p4Hi7rGZxHe_RAMahqZuJ0Y,2883
|
|
75
76
|
secator/runners/celery.py,sha256=bqvDTTdoHiGRCt0FRvlgFHQ_nsjKMP5P0PzGbwfCj_0,425
|
|
76
|
-
secator/runners/command.py,sha256=
|
|
77
|
+
secator/runners/command.py,sha256=aAM_VZB9ZDtSYhg52PUlBJIkiqUcNb895Xuef6lIkF8,26900
|
|
77
78
|
secator/runners/scan.py,sha256=n8RL9vXPmNqukdB2a5wcPhSmxsZB4KFaqtZt0wfa8dU,1622
|
|
78
79
|
secator/runners/task.py,sha256=LIgcBqORVPG5Kfx6g6RnEni1kgWchMfa3Oo2JEZri1Y,2037
|
|
79
80
|
secator/runners/workflow.py,sha256=sO3B9GcndQLgGPnDz-A6XKnBmYO_ABAU_UXpW-q1K1A,3890
|
|
@@ -83,42 +84,42 @@ secator/serializers/dataclass.py,sha256=RqICpfsYWGjHAACAA2h2jZ_69CFHim4VZwcBqowG
|
|
|
83
84
|
secator/serializers/json.py,sha256=UJwAymRzjF-yBKOgz1MTOyBhQcdQg7fOKRXgmHIu8fo,411
|
|
84
85
|
secator/serializers/regex.py,sha256=fh-fE0RGvKSGKByFtwmKsWriRpZR9PXZQsY9JybHBWI,489
|
|
85
86
|
secator/tasks/__init__.py,sha256=yRIZf9E47aS7o6rpgAJLgJUpX2cug1ofZeq8QsxgyjU,192
|
|
86
|
-
secator/tasks/_categories.py,sha256=
|
|
87
|
-
secator/tasks/arjun.py,sha256=
|
|
88
|
-
secator/tasks/bbot.py,sha256=
|
|
89
|
-
secator/tasks/bup.py,sha256=
|
|
90
|
-
secator/tasks/cariddi.py,sha256=
|
|
91
|
-
secator/tasks/dalfox.py,sha256=
|
|
92
|
-
secator/tasks/dirsearch.py,sha256=
|
|
93
|
-
secator/tasks/dnsx.py,sha256=
|
|
94
|
-
secator/tasks/dnsxbrute.py,sha256=
|
|
95
|
-
secator/tasks/feroxbuster.py,sha256=
|
|
96
|
-
secator/tasks/ffuf.py,sha256=
|
|
87
|
+
secator/tasks/_categories.py,sha256=VWbBCksIYOxlrIKIHYtQpzYlvLh019w4S_nKbgC53Ko,14358
|
|
88
|
+
secator/tasks/arjun.py,sha256=SwTLILvjx8rOKrsgyEKVzYdYTRX7CvgjVatMPBsC2bM,2900
|
|
89
|
+
secator/tasks/bbot.py,sha256=NoJYxxy4l_xP-ZMAOxAK7nPxHFH5raGBo82y3SfWppM,7939
|
|
90
|
+
secator/tasks/bup.py,sha256=Gl6W3UAJKGJcQ62ACN88v0_6jDA4gZgJXEk6TgiDmQE,3050
|
|
91
|
+
secator/tasks/cariddi.py,sha256=1LoMmqNPNyI-v0MCt5TIQQoTuNoGpK_x6uoAV2x8GiE,3534
|
|
92
|
+
secator/tasks/dalfox.py,sha256=gPsLI4esyvzHpNW0UlRH-W5-sUOldJjdA0Ffq59QmP4,1879
|
|
93
|
+
secator/tasks/dirsearch.py,sha256=Mq_4kqNK5a5KfrvPnf081qI8YAxMAQ571zz5MIPCgG0,2209
|
|
94
|
+
secator/tasks/dnsx.py,sha256=SDf3zudkO69qZmOASDjA82XyEo0pbWUaC0ADLcn24m0,2305
|
|
95
|
+
secator/tasks/dnsxbrute.py,sha256=6NJDVrXU4yirL5qMZXi0ccwHIAGil__kgteES_Oc6qg,1464
|
|
96
|
+
secator/tasks/feroxbuster.py,sha256=9rQYL_AZNSmzOdeHpWTva6Y6cwAedKWrs3UWNW8ErCE,2769
|
|
97
|
+
secator/tasks/ffuf.py,sha256=5yRkZFZtOdQkJQNE-wy_QuqlhAuM6HCpWJEY6BJ3JeM,2593
|
|
97
98
|
secator/tasks/fping.py,sha256=OFF_uR3YzXhQJcb-ObdY178cHHjnJBPXtjMjdzVSlGI,1116
|
|
98
|
-
secator/tasks/gau.py,sha256=
|
|
99
|
+
secator/tasks/gau.py,sha256=lfS9j49AXADK_Syeuo078-QS0acCj51JKRO9YnfpldA,1687
|
|
99
100
|
secator/tasks/gf.py,sha256=y8Fc0sRLGqNuwUjTBgLk3HEw3ZOnh09nB_GTufGErNA,962
|
|
100
|
-
secator/tasks/gitleaks.py,sha256=
|
|
101
|
-
secator/tasks/gospider.py,sha256=
|
|
102
|
-
secator/tasks/grype.py,sha256=
|
|
103
|
-
secator/tasks/h8mail.py,sha256=
|
|
104
|
-
secator/tasks/httpx.py,sha256=
|
|
105
|
-
secator/tasks/katana.py,sha256=
|
|
106
|
-
secator/tasks/maigret.py,sha256=
|
|
107
|
-
secator/tasks/mapcidr.py,sha256=
|
|
108
|
-
secator/tasks/msfconsole.py,sha256=
|
|
109
|
-
secator/tasks/naabu.py,sha256=
|
|
101
|
+
secator/tasks/gitleaks.py,sha256=Md9l4KfS40Enoz6WVdGe_Hf1MOXxbSWFLFmC_D1Ta7c,2583
|
|
102
|
+
secator/tasks/gospider.py,sha256=4awtr0SlJPEQQD-Oap9gHWhY1qktW89wgXwOgi5X7Us,2309
|
|
103
|
+
secator/tasks/grype.py,sha256=t1pOXLOrhcbHjTCNlaf7mEcKXyzkOSXwX1XSz0u95Mw,2485
|
|
104
|
+
secator/tasks/h8mail.py,sha256=dvj9B-2VxhTfv4Ijwia2RWnje2rwsMNzWn5hRQvpWqk,1965
|
|
105
|
+
secator/tasks/httpx.py,sha256=qf8MqMVui-UWV4jHsvreDMKjpHIPlkbYzZUihPw6m24,5935
|
|
106
|
+
secator/tasks/katana.py,sha256=hXUN5VxwYPQLGB4WW6x46vowNlvQ583IvLQ3CCtTrK8,5396
|
|
107
|
+
secator/tasks/maigret.py,sha256=s_UOa_K72edN0HEdo0VeYu_Rff7mER611-Y_08_OXBY,2096
|
|
108
|
+
secator/tasks/mapcidr.py,sha256=jCJb_3kQomcoWNl8o3D-oZqUzTJeg1d_vKLF1oLTlGk,1022
|
|
109
|
+
secator/tasks/msfconsole.py,sha256=XSW3WRx6LyCNlCD7JebgDQroNAnY4yFQQQHPxPa1J4Y,6533
|
|
110
|
+
secator/tasks/naabu.py,sha256=DpnQHpgOh-Ob0EKQ3Q6n6tgqauc2UmlyS6Ges0itApU,2357
|
|
110
111
|
secator/tasks/nmap.py,sha256=ZQJnlratjEqASHXb05QYknX2J1gWaZAN3-O4Y1Dw3UA,16970
|
|
111
|
-
secator/tasks/nuclei.py,sha256=
|
|
112
|
-
secator/tasks/searchsploit.py,sha256=
|
|
113
|
-
secator/tasks/subfinder.py,sha256=
|
|
114
|
-
secator/tasks/testssl.py,sha256=
|
|
115
|
-
secator/tasks/trivy.py,sha256=
|
|
116
|
-
secator/tasks/wafw00f.py,sha256=
|
|
117
|
-
secator/tasks/wpprobe.py,sha256=
|
|
118
|
-
secator/tasks/wpscan.py,sha256=
|
|
112
|
+
secator/tasks/nuclei.py,sha256=jdb8VVYpccUdzbEPfK0K7lYmLggusNe8HWRq8wKSftE,4965
|
|
113
|
+
secator/tasks/searchsploit.py,sha256=gw5Wh6T20txSGoBrOs60xtRRfDS6c_oecMcU-vKnZWQ,3410
|
|
114
|
+
secator/tasks/subfinder.py,sha256=lnizwljCX_FZ04wi69TEwbBf8kZccddx3rA6UKGQDWA,1244
|
|
115
|
+
secator/tasks/testssl.py,sha256=Bi8qmlvGvXh8idQpPBE8BOvkWS5hClA2-wVVnz9rypY,11601
|
|
116
|
+
secator/tasks/trivy.py,sha256=qGhNT3296aJvvaQx82L2K9oPdPVbNLZ5DCY4T8nrdaE,3197
|
|
117
|
+
secator/tasks/wafw00f.py,sha256=XeYl6ppS_YA-SmhBNdNcFmgUWYmiCnzU7TTLfxUTcRo,2747
|
|
118
|
+
secator/tasks/wpprobe.py,sha256=Dx-HcGYjWyyeIsHwkstlcxPKJ5GR6jP9TMTHeV6SXPo,4025
|
|
119
|
+
secator/tasks/wpscan.py,sha256=QrEO6ZrkmC3TDtD91Aeqip8qrcsrK7filHKpRdcteJU,5755
|
|
119
120
|
secator/workflows/__init__.py,sha256=R_TTyjg9f2Ph2_LYiF0lL07IjTrfRE_zqJzy-N7_WCk,675
|
|
120
|
-
secator-0.
|
|
121
|
-
secator-0.
|
|
122
|
-
secator-0.
|
|
123
|
-
secator-0.
|
|
124
|
-
secator-0.
|
|
121
|
+
secator-0.13.0.dist-info/METADATA,sha256=CrLCqEzK08_n09RStVZ0rp1bHNo4j3QVBrdxe9eV6NE,14724
|
|
122
|
+
secator-0.13.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
123
|
+
secator-0.13.0.dist-info/entry_points.txt,sha256=lPgsqqUXWgiuGSfKy-se5gHdQlAXIwS_A46NYq7Acic,44
|
|
124
|
+
secator-0.13.0.dist-info/licenses/LICENSE,sha256=19W5Jsy4WTctNkqmZIqLRV1gTDOp01S3LDj9iSgWaJ0,2867
|
|
125
|
+
secator-0.13.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|