secator 0.0.1__py3-none-any.whl → 0.3.6__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/.gitignore +162 -0
- secator/celery.py +7 -67
- secator/cli.py +631 -274
- secator/decorators.py +54 -11
- secator/definitions.py +104 -33
- secator/exporters/csv.py +1 -2
- secator/exporters/gdrive.py +1 -1
- secator/exporters/json.py +1 -2
- secator/exporters/txt.py +1 -2
- secator/hooks/mongodb.py +12 -12
- secator/installer.py +335 -0
- secator/report.py +2 -14
- secator/rich.py +3 -10
- secator/runners/_base.py +105 -34
- secator/runners/_helpers.py +18 -17
- secator/runners/command.py +91 -55
- secator/runners/scan.py +2 -1
- secator/runners/task.py +5 -4
- secator/runners/workflow.py +12 -11
- secator/tasks/_categories.py +14 -19
- secator/tasks/cariddi.py +2 -1
- secator/tasks/dalfox.py +2 -0
- secator/tasks/dirsearch.py +5 -7
- secator/tasks/dnsx.py +1 -0
- secator/tasks/dnsxbrute.py +1 -0
- secator/tasks/feroxbuster.py +6 -7
- secator/tasks/ffuf.py +4 -7
- secator/tasks/gau.py +1 -4
- secator/tasks/gf.py +2 -1
- secator/tasks/gospider.py +1 -0
- secator/tasks/grype.py +47 -47
- secator/tasks/h8mail.py +5 -6
- secator/tasks/httpx.py +24 -18
- secator/tasks/katana.py +11 -15
- secator/tasks/maigret.py +3 -3
- secator/tasks/mapcidr.py +1 -0
- secator/tasks/msfconsole.py +3 -1
- secator/tasks/naabu.py +2 -1
- secator/tasks/nmap.py +14 -17
- secator/tasks/nuclei.py +4 -3
- secator/tasks/searchsploit.py +3 -2
- secator/tasks/subfinder.py +1 -0
- secator/tasks/wpscan.py +11 -13
- secator/utils.py +64 -82
- secator/utils_test.py +3 -2
- secator-0.3.6.dist-info/METADATA +411 -0
- secator-0.3.6.dist-info/RECORD +100 -0
- {secator-0.0.1.dist-info → secator-0.3.6.dist-info}/WHEEL +1 -2
- secator-0.0.1.dist-info/METADATA +0 -199
- secator-0.0.1.dist-info/RECORD +0 -114
- secator-0.0.1.dist-info/top_level.txt +0 -2
- tests/__init__.py +0 -0
- tests/integration/__init__.py +0 -0
- tests/integration/inputs.py +0 -42
- tests/integration/outputs.py +0 -392
- tests/integration/test_scans.py +0 -82
- tests/integration/test_tasks.py +0 -103
- tests/integration/test_workflows.py +0 -163
- tests/performance/__init__.py +0 -0
- tests/performance/loadtester.py +0 -56
- tests/unit/__init__.py +0 -0
- tests/unit/test_celery.py +0 -39
- tests/unit/test_scans.py +0 -0
- tests/unit/test_serializers.py +0 -51
- tests/unit/test_tasks.py +0 -348
- tests/unit/test_workflows.py +0 -96
- {secator-0.0.1.dist-info → secator-0.3.6.dist-info}/entry_points.txt +0 -0
- {secator-0.0.1.dist-info → secator-0.3.6.dist-info/licenses}/LICENSE +0 -0
secator-0.0.1.dist-info/METADATA
DELETED
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: secator
|
|
3
|
-
Version: 0.0.1
|
|
4
|
-
Summary: Security tools command runner
|
|
5
|
-
Author: FLZ Security
|
|
6
|
-
Author-email: ocervello@freelabz.com
|
|
7
|
-
License: MIT
|
|
8
|
-
Keywords: recon framework vulnerability pentest automation
|
|
9
|
-
Classifier: Development Status :: 3 - Alpha
|
|
10
|
-
Classifier: Intended Audience :: Developers
|
|
11
|
-
Classifier: Programming Language :: Python
|
|
12
|
-
Requires-Python: >=3.8
|
|
13
|
-
Description-Content-Type: text/markdown
|
|
14
|
-
License-File: LICENSE
|
|
15
|
-
Requires-Dist: bs4
|
|
16
|
-
Requires-Dist: celery
|
|
17
|
-
Requires-Dist: cpe
|
|
18
|
-
Requires-Dist: dotmap
|
|
19
|
-
Requires-Dist: eventlet
|
|
20
|
-
Requires-Dist: flower
|
|
21
|
-
Requires-Dist: free-proxy
|
|
22
|
-
Requires-Dist: furl
|
|
23
|
-
Requires-Dist: gevent
|
|
24
|
-
Requires-Dist: jinja2
|
|
25
|
-
Requires-Dist: humanize
|
|
26
|
-
Requires-Dist: memray
|
|
27
|
-
Requires-Dist: netifaces
|
|
28
|
-
Requires-Dist: pygments
|
|
29
|
-
Requires-Dist: pyinstrument
|
|
30
|
-
Requires-Dist: python-dotenv
|
|
31
|
-
Requires-Dist: pyyaml
|
|
32
|
-
Requires-Dist: pymongo
|
|
33
|
-
Requires-Dist: redis
|
|
34
|
-
Requires-Dist: requests
|
|
35
|
-
Requires-Dist: rich
|
|
36
|
-
Requires-Dist: rich-click <1.7
|
|
37
|
-
Requires-Dist: tabulate
|
|
38
|
-
Requires-Dist: termcolor
|
|
39
|
-
Requires-Dist: validators
|
|
40
|
-
Requires-Dist: xmltodict
|
|
41
|
-
Provides-Extra: dev
|
|
42
|
-
Requires-Dist: coverage ; extra == 'dev'
|
|
43
|
-
Requires-Dist: flake8 ; extra == 'dev'
|
|
44
|
-
Requires-Dist: watchdog ; extra == 'dev'
|
|
45
|
-
Requires-Dist: asciinema-automation ; extra == 'dev'
|
|
46
|
-
Provides-Extra: google
|
|
47
|
-
Requires-Dist: google-api-python-client ; extra == 'google'
|
|
48
|
-
Requires-Dist: google-auth ; extra == 'google'
|
|
49
|
-
Requires-Dist: gspread ; extra == 'google'
|
|
50
|
-
|
|
51
|
-
<h1 align="center">
|
|
52
|
-
secator
|
|
53
|
-
<br>
|
|
54
|
-
</h1>
|
|
55
|
-
|
|
56
|
-
<h4 align="center">Security swiss-knife to speed up vulnerability assessments.</h4>
|
|
57
|
-
|
|
58
|
-
<p align="center">
|
|
59
|
-
<!-- <a href="https://goreportcard.com/report/github.com/freelabz/secator"><img src="https://goreportcard.com/badge/github.com/freelabz/secator"></a> -->
|
|
60
|
-
<a href="https://github.com/freelabz/secator/issues"><img src="https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat"></a>
|
|
61
|
-
<a href="https://github.com/freelabz/secator/releases"><img src="https://img.shields.io/github/release/freelabz/secator"></a>
|
|
62
|
-
<a href="https://www.apache.org/licenses/LICENSE-2.0"><img src="https://img.shields.io/badge/License-Apache-blue.svg"></a>
|
|
63
|
-
<a href="https://twitter.com/freelabz"><img src="https://img.shields.io/twitter/follow/freelabz.svg?logo=twitter"></a>
|
|
64
|
-
<!-- <a href="https://discord.gg/freelabz"><img src="https://img.shields.io/discord/695645237418131507.svg?logo=discord"></a> -->
|
|
65
|
-
</p>
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
<p align="center">
|
|
69
|
-
<a href="#features">Features</a> •
|
|
70
|
-
<a href="#supported-commands">Supported commands</a> •
|
|
71
|
-
<a href="#install-secator">Installation</a> •
|
|
72
|
-
<a href="#usage">Usage</a> •
|
|
73
|
-
<a href="https://docs.freelabz.com">Documentation</a>
|
|
74
|
-
</p>
|
|
75
|
-
|
|
76
|
-
`secator` is a task and workflow runner used for security assessments. It supports dozens of well-known security tools
|
|
77
|
-
and it is designed to improve productivity for pentesters and security researchers.
|
|
78
|
-
|
|
79
|
-
# Features
|
|
80
|
-
|
|
81
|
-

|
|
82
|
-
|
|
83
|
-
* **Curated list of commands**
|
|
84
|
-
|
|
85
|
-
* **Unified input options**
|
|
86
|
-
|
|
87
|
-
* **Unified output schema**
|
|
88
|
-
|
|
89
|
-
* **CLI and library usage**
|
|
90
|
-
|
|
91
|
-
* **Distributed options with Celery**
|
|
92
|
-
|
|
93
|
-
* **Complexity from simple tasks to complex workflows**
|
|
94
|
-
|
|
95
|
-
* **Customizable**
|
|
96
|
-
|
|
97
|
-
## Supported commands
|
|
98
|
-
|
|
99
|
-
`secator` integrates the following commands:
|
|
100
|
-
|
|
101
|
-
| Name | Description | Category |
|
|
102
|
-
|---------------------------------------------------------------|--------------------------------------------------------------------------------|----------------|
|
|
103
|
-
| [httpx](https://github.com/projectdiscovery/httpx) | Fast HTTP prober. | `http` |
|
|
104
|
-
| [cariddi](https://github.com/edoardottt/cariddi) | Fast crawler and endpoint secrets / api keys / tokens matcher. | `http/crawler` |
|
|
105
|
-
| [gau](https://github.com/lc/gau) | Offline URL crawler (Alien Vault, The Wayback Machine, Common Crawl, URLScan). | `http/crawler` |
|
|
106
|
-
| [gospider](https://github.com/jaeles-project/gospider) | Fast web spider written in Go. | `http/crawler` |
|
|
107
|
-
| [katana](https://github.com/projectdiscovery/katana) | Next-generation crawling and spidering framework. | `http/crawler` |
|
|
108
|
-
| [dirsearch](https://github.com/maurosoria/dirsearch) | Web path discovery. | `http/fuzzer` |
|
|
109
|
-
| [feroxbuster](https://github.com/epi052/feroxbuster) | Simple, fast, recursive content discovery tool written in Rust. | `http/fuzzer` |
|
|
110
|
-
| [ffuf](https://github.com/ffuf/ffuf) | Fast web fuzzer written in Go. | `http/fuzzer` |
|
|
111
|
-
| [h8mail](https://github.com/khast3x/h8mail) | Email OSINT and breach hunting tool. | `osint` |
|
|
112
|
-
| [dnsx](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit designed for running DNS queries. | `recon/dns` |
|
|
113
|
-
| [dnsxbrute](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit designed for running DNS queries (bruteforce mode). | `recon/dns` |
|
|
114
|
-
| [subfinder](https://github.com/projectdiscovery/subfinder) | Fast subdomain finder. | `recon/dns` |
|
|
115
|
-
| [fping](https://fping.org/) | Find alive hosts on local networks. | `recon/ip` |
|
|
116
|
-
| [mapcidr](https://github.com/projectdiscovery/mapcidr) | Expand CIDR ranges into IPs. | `recon/ip` |
|
|
117
|
-
| [naabu](https://github.com/projectdiscovery/naabu) | Fast port discovery tool. | `recon/port` |
|
|
118
|
-
| [maigret](https://github.com/soxoj/maigret) | Hunt for user accounts across many websites. | `recon/user` |
|
|
119
|
-
| [gf](https://github.com/tomnomnom/gf) | A wrapper around grep to avoid typing common patterns. | `tagger` |
|
|
120
|
-
| [grype](https://github.com/anchore/grype) | A vulnerability scanner for container images and filesystems. | `vuln/code` |
|
|
121
|
-
| [dalfox](https://github.com/hahwul/dalfox) | Powerful XSS scanning tool and parameter analyzer. | `vuln/http` |
|
|
122
|
-
| [msfconsole](https://docs.rapid7.com/metasploit/msf-overview) | CLI to access and work with the Metasploit Framework. | `vuln/http` |
|
|
123
|
-
| [wpscan](https://github.com/wpscanteam/wpscan) | WordPress Security Scanner | `vuln/multi` |
|
|
124
|
-
| [nmap](https://github.com/nmap/nmap) | Vulnerability scanner using NSE scripts. | `vuln/multi` |
|
|
125
|
-
| [nuclei](https://github.com/projectdiscovery/nuclei) | Fast and customisable vulnerability scanner based on simple YAML based DSL. | `vuln/multi` |
|
|
126
|
-
| [searchsploit](https://gitlab.com/exploit-database/exploitdb) | Exploit searcher. | `exploit/search` |
|
|
127
|
-
|
|
128
|
-
Feel free to request new commands to be added by opening an issue, but please
|
|
129
|
-
check that the command complies with our selection criterias before doing so. If it doesn't but you still want to integrate it into `secator`, you can plug it in (see the [dev guide](https://docs.freelabz.com/for-developers/writing-custom-tasks)).
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
## Install Secator
|
|
133
|
-
|
|
134
|
-
Secator requires **python >= 3.8** to install successfully. Run the following command to install the latest version:
|
|
135
|
-
|
|
136
|
-
```sh
|
|
137
|
-
pip3 install git+https://github.com/freelabz/secator.git
|
|
138
|
-
```
|
|
139
|
-
|
|
140
|
-
<details>
|
|
141
|
-
<summary>Bash one-liner</summary>
|
|
142
|
-
|
|
143
|
-
git clone https://github.com/freelabz/secator && sh ./scripts/install.sh
|
|
144
|
-
|
|
145
|
-
</details>
|
|
146
|
-
|
|
147
|
-
<details>
|
|
148
|
-
<summary>Docker</summary>
|
|
149
|
-
|
|
150
|
-
docker build -t secator
|
|
151
|
-
|
|
152
|
-
</details>
|
|
153
|
-
|
|
154
|
-
<details>
|
|
155
|
-
<summary>Development build</summary>
|
|
156
|
-
|
|
157
|
-
git clone https://github.com/freelabz/secator
|
|
158
|
-
cd secator
|
|
159
|
-
python3 -m virtualenv -p python3 ~/.virtualenvs/secator
|
|
160
|
-
source ~/.virtualenvs/secator/bin/activate
|
|
161
|
-
pip3 install -e .
|
|
162
|
-
|
|
163
|
-
</details>
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
### Install specific tasks
|
|
167
|
-
|
|
168
|
-
```sh
|
|
169
|
-
secator u install <TASK_NAME>
|
|
170
|
-
```
|
|
171
|
-
|
|
172
|
-
## Usage
|
|
173
|
-
```sh
|
|
174
|
-
secator --help
|
|
175
|
-
```
|
|
176
|
-

|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
### Running secator
|
|
180
|
-
|
|
181
|
-
Run a fuzzing task (`ffuf`):
|
|
182
|
-
|
|
183
|
-
```sh
|
|
184
|
-
secator x ffuf http://testphp.vulnweb.com/FUZZ
|
|
185
|
-
```
|
|
186
|
-
|
|
187
|
-
Run a port scan:
|
|
188
|
-
|
|
189
|
-
```sh
|
|
190
|
-
secator w port_scan mydomain.com
|
|
191
|
-
```
|
|
192
|
-
|
|
193
|
-
Run a full host scan:
|
|
194
|
-
|
|
195
|
-
```sh
|
|
196
|
-
secator s host mydomain.com
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
For more, read the complete [documentation](https://docs.freelabz.com).
|
secator-0.0.1.dist-info/RECORD
DELETED
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
secator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
secator/celery.py,sha256=QJyNvY6-I_QAgVUGMqZ07nSjEIy43R7zAHLQXPji2ss,13754
|
|
3
|
-
secator/cli.py,sha256=3ot6q1WcWDpwOQTtO89fmzhCyYa5LTwhsvd3KfVWnPg,19753
|
|
4
|
-
secator/config.py,sha256=iOeRzq7u1rvR1-Oq5v9wGxQYB613X0xKGLIcrfhEGc4,3693
|
|
5
|
-
secator/decorators.py,sha256=Zi9II1d1Yx4gtVZ7G7-Gw9NWrxtvDvddQDgVJJbCOlM,9207
|
|
6
|
-
secator/definitions.py,sha256=hnulsL7XJNDBh2Qky5okazDdDC9b030_ehIBjpJesJ8,5634
|
|
7
|
-
secator/report.py,sha256=d7bMLltJPifcEvsZ_MpDqERWVlMuRAuQg-FWu8Qat80,3056
|
|
8
|
-
secator/rich.py,sha256=WwgVG0GXF64COASVqmBNzYwM5CZ-QEOaYAWhby9AVKg,3398
|
|
9
|
-
secator/utils.py,sha256=No6m8LtyhC9RzXXQLOAwYRQPPNiGjPpI7o_Nbkj2B-w,11025
|
|
10
|
-
secator/utils_test.py,sha256=ovITORZwHqfP_bPfRQazjOc_Gs8lAwc7pnDEUqdnido,4986
|
|
11
|
-
secator/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
secator/configs/profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
-
secator/configs/profiles/aggressive.yaml,sha256=JilVySABlSCYEFMjH7V0Oc3dAVlkfHOh1odTGhtm7BQ,108
|
|
14
|
-
secator/configs/profiles/default.yaml,sha256=kDuOF1Qkpv4oz1GZ-OwDxbi5pptAqShsCqdzkBOxXfw,149
|
|
15
|
-
secator/configs/profiles/stealth.yaml,sha256=Ud3EMZ2yRj0AT6w-AfV7fWUBYib9VAFp46GPpof9YaU,107
|
|
16
|
-
secator/configs/scans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
secator/configs/scans/domain.yaml,sha256=Dkm5dU2NdUTInkWD5cmVczvhUH0soaKPtoESeg8BVsQ,265
|
|
18
|
-
secator/configs/scans/host.yaml,sha256=tobz6yGeYlVnGwLVI9RLJT6MDLnGmQVVj8EOwAdksfw,189
|
|
19
|
-
secator/configs/scans/network.yaml,sha256=ghlgIwkWhJKQeT6V5TE51dFL-VRszWJtm4qx4ImjEEY,252
|
|
20
|
-
secator/configs/scans/subdomain.yaml,sha256=I007b1V5Rmm_4R9mODp6jxonHNIjXkQT9sU-AOxLSIo,123
|
|
21
|
-
secator/configs/scans/url.yaml,sha256=zhRiqyHq7BZHtKsmjpMvp3vmt5DRNtmfqW44sZm1tWw,158
|
|
22
|
-
secator/configs/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
secator/configs/workflows/cidr_recon.yaml,sha256=u1QKDKGbpJEez5QqC20Yd_nBLZd_z4nA-XFRQV7pVI4,558
|
|
24
|
-
secator/configs/workflows/code_scan.yaml,sha256=3H8H55NVskiDbBwNueVF8FUYkquEQn2C6evnid9zhB4,207
|
|
25
|
-
secator/configs/workflows/host_recon.yaml,sha256=wHXMycHQpWq8gVc8YSr6Kv-_0CtIfmkr6j7AY6Lah2w,1018
|
|
26
|
-
secator/configs/workflows/port_scan.yaml,sha256=DPXL8m96h3oFdk7Lw_6dP1j0pl_qzi_kWszZvaId5f0,796
|
|
27
|
-
secator/configs/workflows/subdomain_recon.yaml,sha256=qMvvKj0rWO1xzMiaT6VZMysXYGJFrGgGHP0weYEhs2g,798
|
|
28
|
-
secator/configs/workflows/url_crawl.yaml,sha256=h74dvDBNLuY1EHc9FMby3ydr34VH1qFJHQKUaIIYpcw,573
|
|
29
|
-
secator/configs/workflows/url_dirsearch.yaml,sha256=6UiQNge1WkryetOxwqzERra0xmNG0U8Y8CWKFLTyUUQ,677
|
|
30
|
-
secator/configs/workflows/url_fuzz.yaml,sha256=K1RkplXrgc7q2YJVv5A6B5MMkAzIIv31HInhRCKMpyI,774
|
|
31
|
-
secator/configs/workflows/url_nuclei.yaml,sha256=Qigz-hJzM7GeNA_UD46dThVIoqbWlBgiYb_i5fSyJiI,265
|
|
32
|
-
secator/configs/workflows/url_vuln.yaml,sha256=RNeS6o1wworxCznvnAgrfzVnMayD-9hFQ0-W0NbqMJY,1345
|
|
33
|
-
secator/configs/workflows/user_hunt.yaml,sha256=e5b-CkkjhOPE8Yh5LUh0K60GKmxTgn4s-Joo7m9jKrk,180
|
|
34
|
-
secator/configs/workflows/wordpress.yaml,sha256=QgBUNi8Gav_efbmczUGfzlByWsmogTmGtu1MwAlvQts,279
|
|
35
|
-
secator/exporters/__init__.py,sha256=2nBPOOas9Fp4nmo9pjSw3mvklZNHL8BmH88w_i-eaJc,356
|
|
36
|
-
secator/exporters/_base.py,sha256=-RrrwO_qp0ETLLHSta4T-zKtMbWdiEmz1Cw5mNo6USU,77
|
|
37
|
-
secator/exporters/csv.py,sha256=tfjaCZAD61IJt6j9Fu3lhwHJ7BTtTRB-dVe8DBcgtuI,1057
|
|
38
|
-
secator/exporters/gdrive.py,sha256=Wvb2kk65zqOUHwsbjw0lrLX62yX-Zn7ZZBDboneO8vM,4081
|
|
39
|
-
secator/exporters/json.py,sha256=DuAjs9Mxzp8yRzo1I2yeY1liWbTJd39brH5IQYz_XBM,500
|
|
40
|
-
secator/exporters/table.py,sha256=RHQoaFeeyeoBGNucJgrlk2KtmVqe9BGNtAAYee7xJ8Y,210
|
|
41
|
-
secator/exporters/txt.py,sha256=L09VS_NWAgUF1j4Pfil0q2yoMOdnXNtdymqqxxh0ni8,860
|
|
42
|
-
secator/hooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
-
secator/hooks/mongodb.py,sha256=rhRLtZZkhjz1GWpC2-CQpBaA2k8L7FVeR-5LkdjFdqc,7007
|
|
44
|
-
secator/output_types/__init__.py,sha256=uj6AXDeorECPwhwekNVGjQbGv41jHG_8udkuoc4XzW0,854
|
|
45
|
-
secator/output_types/_base.py,sha256=bld1ED0pN1hOvwBV2canrlKrfBCgawzWKPDH6F3jVQE,2469
|
|
46
|
-
secator/output_types/exploit.py,sha256=NIa0mbhm3ZTyV5kyjEvrI5QK2swMpdMCj3f1gIWcsro,1581
|
|
47
|
-
secator/output_types/ip.py,sha256=ySEqH3Gs7U41I1kS8olZ_p3Mk7JryEbXHLyexqlBQNA,995
|
|
48
|
-
secator/output_types/port.py,sha256=1ZmV4FDvwk1dvFXySnz5yIp13hbaRhnunxnETm66Os0,1607
|
|
49
|
-
secator/output_types/progress.py,sha256=u_-4IiECTSCJf-X_RkFOoFyb8mrff2rMcm8GGqLZ8hs,1231
|
|
50
|
-
secator/output_types/record.py,sha256=WnI0yvwzrO2Wt7OWciHMOuIRRLbuSOAJczdNshV7tYU,1192
|
|
51
|
-
secator/output_types/subdomain.py,sha256=lmCoK7_8I4FXWgl9kToRvDn3gr3E3uBTaQzFAOHbswE,1343
|
|
52
|
-
secator/output_types/tag.py,sha256=8AlT0VigsYP04GN8sPCTM07IlL5uMUmFgsNa9IDCoyY,1431
|
|
53
|
-
secator/output_types/target.py,sha256=gJWzzqhal34Cnl9oAKf0m1MSaGxRtUGdA2XbkhD_yd0,848
|
|
54
|
-
secator/output_types/url.py,sha256=yDozBXCuPfuybH1iX_xGmbCJPXO6Ei14C8Hp5CnzNbE,2535
|
|
55
|
-
secator/output_types/user_account.py,sha256=EiT2BFl2LTCdqHF1meoMEKVhjKGroyf8-JoWHPuBOTc,1378
|
|
56
|
-
secator/output_types/vulnerability.py,sha256=p0DTbr5w7Vv5D3dgbdnvsG5qXzqVVk4YPOPWYS1lxmM,2843
|
|
57
|
-
secator/runners/__init__.py,sha256=EBbOk37vkBy9p8Hhrbi-2VtM_rTwQ3b-0ggTyiD22cE,290
|
|
58
|
-
secator/runners/_base.py,sha256=o0FApkYRWAk6jMSOJ5FTNZTXA1qbmCqwcfehiv8nqgA,25616
|
|
59
|
-
secator/runners/_helpers.py,sha256=r8qo9KDwz9Jfefi0F7YVcwYdosI5bS_CMn_8eSs-8VE,3807
|
|
60
|
-
secator/runners/command.py,sha256=IjkHY9y_wDTazMF3dnbZt6zTe4YFXBU3x-99cShtpjw,17830
|
|
61
|
-
secator/runners/scan.py,sha256=H8CuxTYnkKwFbFhtybM4qnGz7Ktf3uIq7qruzzt4hvo,1650
|
|
62
|
-
secator/runners/task.py,sha256=o10p44ZV-4gVYMRudeWWa5CrCmoUWPQ-nyEyCNGOfy4,2711
|
|
63
|
-
secator/runners/workflow.py,sha256=tcX3mEZg64QBvwABtg6GyVcNjSZPsFXnp9Lb4gWJ_YY,3615
|
|
64
|
-
secator/serializers/__init__.py,sha256=OP5cmFl77ovgSCW_IDcZ21St2mUt5UK4QHfrsK2KvH8,248
|
|
65
|
-
secator/serializers/dataclass.py,sha256=g5gMT4NwndjhGcGbFuYEs07AZW_Q_m9orov_edVEGlI,792
|
|
66
|
-
secator/serializers/json.py,sha256=XwuSQOBwrOAs16F5HtY-Q-rAGAxfNvlq3z-Nb2gwigE,304
|
|
67
|
-
secator/serializers/regex.py,sha256=hGJ_1JSOv9xPtfn_umHlsjnR_alnsDFv-UmjYCC3vwU,314
|
|
68
|
-
secator/tasks/__init__.py,sha256=Wp2QF5QS2e_BlVygsIEFbmYPTfTg7v_Vd3LQJeXTC7I,344
|
|
69
|
-
secator/tasks/_categories.py,sha256=WJ-wRwvR9lsrEZeREcCGYGHvVF8cJ8IgqR2rWqZRSXU,8845
|
|
70
|
-
secator/tasks/cariddi.py,sha256=T_SdL4io7H1Evy91SsYpQgXDwN90aEI0LWBlanvgUZQ,3074
|
|
71
|
-
secator/tasks/dalfox.py,sha256=bm83J4k-I558q07OMEDj0gypWxqvSwzInWp-PZmYjSM,1677
|
|
72
|
-
secator/tasks/dirsearch.py,sha256=L074PEWJXtCBOZq9bS8qx3kxH3KOCIdCS1o3qh_ue7s,2452
|
|
73
|
-
secator/tasks/dnsx.py,sha256=6v2ttbycLLt6p-1B05P5662QNdFgS-ozrKjzN3w8hSk,1722
|
|
74
|
-
secator/tasks/dnsxbrute.py,sha256=_wjanOvxKsxZzuSPGiBOsd7TRrbshQgyEEZUCP0tVN4,1172
|
|
75
|
-
secator/tasks/feroxbuster.py,sha256=zKst1puii1H-1dyyuOLpPdWI5V6SwEvmkEQSuJLLwjE,3027
|
|
76
|
-
secator/tasks/ffuf.py,sha256=oTBW6u6QDpn1UDUO4cnGAN6n1sfKSK6GOWNYa76wppk,2536
|
|
77
|
-
secator/tasks/fping.py,sha256=P2EAPUGgwEC4Geh2zUbBPKF9bdqrlrdDg-R_TYLTFng,1127
|
|
78
|
-
secator/tasks/gau.py,sha256=8IOzD8N3nFLsh3HbRVh6Z4PdhtBti2ITClclzJa1Z0U,1446
|
|
79
|
-
secator/tasks/gf.py,sha256=N9Fbt3J3UDb0zr3fG_WW_Fk-94u5UzCL6zUT8WiCblo,892
|
|
80
|
-
secator/tasks/gospider.py,sha256=-zIttWmabtt5qWkxCFSeCKmC2swUhv038j3rbFReXSE,2121
|
|
81
|
-
secator/tasks/grype.py,sha256=D8RRNOwTmCZUyuLG21r8-lFRFtJ42km2IYo2nOeGL94,2356
|
|
82
|
-
secator/tasks/h8mail.py,sha256=nPfL6HYti6ihd6GrPy0LtvhLoY1Ym40MxZjOG4gfOE0,2076
|
|
83
|
-
secator/tasks/httpx.py,sha256=9cwO2hoRByQO48BlFkkIpYzfjXqnyDQPDvgf43HTl14,3493
|
|
84
|
-
secator/tasks/katana.py,sha256=oa0A-mdSQR7nO_71dOy42iaiTVTTvrJFR5E8GXsKCmg,4436
|
|
85
|
-
secator/tasks/maigret.py,sha256=8BKKcKi9t4mcWnm8HpLs-o_758CsF8qT8CGF9nTvFNU,2017
|
|
86
|
-
secator/tasks/mapcidr.py,sha256=O6zssQMMrg3JGXIhldgOD28WNATAb_wfj0svHr0DRxg,928
|
|
87
|
-
secator/tasks/msfconsole.py,sha256=b1qJsMeN08rO7rnWKtqWsutG48ebfr-a69GXEEi-wDQ,5923
|
|
88
|
-
secator/tasks/naabu.py,sha256=FgrlIuTX-p4FqXNzck2XGXRjFjPH97w04y5M2JkYo_0,1514
|
|
89
|
-
secator/tasks/nmap.py,sha256=IWyv_X6VNzRrsMgZrj0WWS5vD8hNQe5pyTQO14O3xNM,9385
|
|
90
|
-
secator/tasks/nuclei.py,sha256=eCMzirvXAheFn2QH1B8IPmA6rFqN41p9cuSZk2GcULQ,3256
|
|
91
|
-
secator/tasks/searchsploit.py,sha256=IYZVcUBGQVcBFe7XFJQqRK15zHwWK7wItgMi7DD_JOk,1469
|
|
92
|
-
secator/tasks/subfinder.py,sha256=_T7erWmfriqLeN5kquO3-L9DlR0mEjYPPC7NMzwTqwg,1033
|
|
93
|
-
secator/tasks/wpscan.py,sha256=9TcJvw2pydYdrsyUMOOYNzLmO47FQm00EjZ084peAFw,5439
|
|
94
|
-
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
-
tests/integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
-
tests/integration/inputs.py,sha256=lno7blKvHkR8jlWn4ESANalPIY4NmLmFZ2M17vDOnGk,1472
|
|
97
|
-
tests/integration/outputs.py,sha256=6sQBA8MUPQMGk5EXsx4wQDu9RgjGN44I-goLv-pQKyM,58250
|
|
98
|
-
tests/integration/test_scans.py,sha256=XbwQZsK4MP2-lOaEwrXRbEOVbwF5pwaM8u1KLRVxMbY,2226
|
|
99
|
-
tests/integration/test_tasks.py,sha256=yc_9LFFgiIY8ngBEQWU-_ALYEa5YpU7BoICYGEDsX94,2919
|
|
100
|
-
tests/integration/test_workflows.py,sha256=oAatkoKtm82pjxtNEpVDx-ui8HwJyJJXz4NCjcOkpbs,4504
|
|
101
|
-
tests/performance/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
-
tests/performance/loadtester.py,sha256=OJREI_D5-EkUAbXJzFXStz70qUO4uSxULzXha9DUQY4,1662
|
|
103
|
-
tests/unit/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
-
tests/unit/test_celery.py,sha256=On_0t9C7i_VJGL9Mc7S0rAcMhc_0jmSau-b7MvDftYA,1144
|
|
105
|
-
tests/unit/test_scans.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
-
tests/unit/test_serializers.py,sha256=C5b2GervpnyLx8_3f2UqAl70ykPRz-icG4p_x72TbSc,1734
|
|
107
|
-
tests/unit/test_tasks.py,sha256=tl4MwRwa_ZUSfCCXtv304FFrtIVzIpU1z9O6hDrbi-Q,10287
|
|
108
|
-
tests/unit/test_workflows.py,sha256=Pec6VZHPogH7FITVeHEYkLtbseF03nqmwP5ZsN02PHs,2935
|
|
109
|
-
secator-0.0.1.dist-info/LICENSE,sha256=19W5Jsy4WTctNkqmZIqLRV1gTDOp01S3LDj9iSgWaJ0,2867
|
|
110
|
-
secator-0.0.1.dist-info/METADATA,sha256=_k4rtgq304Hx6iCSQkUq9_6UAikEN1oz0l1_jL9xGG0,8826
|
|
111
|
-
secator-0.0.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
|
112
|
-
secator-0.0.1.dist-info/entry_points.txt,sha256=lPgsqqUXWgiuGSfKy-se5gHdQlAXIwS_A46NYq7Acic,44
|
|
113
|
-
secator-0.0.1.dist-info/top_level.txt,sha256=QSZWmH2UVodHO4eymvoKxxQAFQ4VAxX6RT85-14CJIw,14
|
|
114
|
-
secator-0.0.1.dist-info/RECORD,,
|
tests/__init__.py
DELETED
|
File without changes
|
tests/integration/__init__.py
DELETED
|
File without changes
|
tests/integration/inputs.py
DELETED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
from secator.definitions import CIDR_RANGE, HOST, IP, ROOT_FOLDER, URL, USERNAME
|
|
2
|
-
|
|
3
|
-
INPUTS_TASKS = {
|
|
4
|
-
URL: f'http://localhost:3000/',
|
|
5
|
-
HOST: 'localhost',
|
|
6
|
-
USERNAME: 'ocervell',
|
|
7
|
-
IP: '127.0.0.1',
|
|
8
|
-
CIDR_RANGE: '192.168.1.0/24',
|
|
9
|
-
'dalfox': 'http://testphp.vulnweb.com/listproducts.php?cat=123&artist=123&asdf=ff',
|
|
10
|
-
'ffuf': 'http://localhost:3000/FUZZ',
|
|
11
|
-
'gf': 'http://localhost:3000?q=test',
|
|
12
|
-
'gau': 'https://danielmiessler.com/',
|
|
13
|
-
'gospider': 'https://danielmiessler.com/',
|
|
14
|
-
'grype': ROOT_FOLDER,
|
|
15
|
-
'nuclei': 'http://localhost:3000/',
|
|
16
|
-
'searchsploit': 'apache 2.4.5',
|
|
17
|
-
'subfinder': 'api.github.com',
|
|
18
|
-
'wpscan': 'http://localhost:8000/',
|
|
19
|
-
'h8mail': 'test@test.com',
|
|
20
|
-
'dnsx': 'wikipedia.org',
|
|
21
|
-
'dnsxbrute': 'wikipedia.org'
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
INPUTS_WORKFLOWS = {
|
|
25
|
-
'cidr_recon': '127.0.0.1/30',
|
|
26
|
-
'code_scan': ROOT_FOLDER,
|
|
27
|
-
# 'dir_finder': 'localhost:3000', # TODO: add fixture with directories
|
|
28
|
-
'host_recon': 'localhost',
|
|
29
|
-
'subdomain_recon': 'api.github.com',
|
|
30
|
-
'url_crawl': 'localhost:3000',
|
|
31
|
-
'url_fuzz': 'http://localhost:3000',
|
|
32
|
-
'url_nuclei': ['http://localhost:3000', 'http://localhost:8080'],
|
|
33
|
-
'url_vuln': ['http://testphp.vulnweb.com/listproducts.php?cat=123&artist=123&asdf=ff', 'https://www.hahwul.com/?q=123'],
|
|
34
|
-
'user_hunt': 'ocervell'
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
INPUTS_SCANS = {
|
|
38
|
-
'domain': 'testphp.vulnweb.com',
|
|
39
|
-
'host': 'localhost',
|
|
40
|
-
'network': '127.0.0.1/24',
|
|
41
|
-
'url': ['http://localhost:3000', 'http://localhost:8080']
|
|
42
|
-
}
|