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.

Files changed (68) hide show
  1. secator/.gitignore +162 -0
  2. secator/celery.py +7 -67
  3. secator/cli.py +631 -274
  4. secator/decorators.py +54 -11
  5. secator/definitions.py +104 -33
  6. secator/exporters/csv.py +1 -2
  7. secator/exporters/gdrive.py +1 -1
  8. secator/exporters/json.py +1 -2
  9. secator/exporters/txt.py +1 -2
  10. secator/hooks/mongodb.py +12 -12
  11. secator/installer.py +335 -0
  12. secator/report.py +2 -14
  13. secator/rich.py +3 -10
  14. secator/runners/_base.py +105 -34
  15. secator/runners/_helpers.py +18 -17
  16. secator/runners/command.py +91 -55
  17. secator/runners/scan.py +2 -1
  18. secator/runners/task.py +5 -4
  19. secator/runners/workflow.py +12 -11
  20. secator/tasks/_categories.py +14 -19
  21. secator/tasks/cariddi.py +2 -1
  22. secator/tasks/dalfox.py +2 -0
  23. secator/tasks/dirsearch.py +5 -7
  24. secator/tasks/dnsx.py +1 -0
  25. secator/tasks/dnsxbrute.py +1 -0
  26. secator/tasks/feroxbuster.py +6 -7
  27. secator/tasks/ffuf.py +4 -7
  28. secator/tasks/gau.py +1 -4
  29. secator/tasks/gf.py +2 -1
  30. secator/tasks/gospider.py +1 -0
  31. secator/tasks/grype.py +47 -47
  32. secator/tasks/h8mail.py +5 -6
  33. secator/tasks/httpx.py +24 -18
  34. secator/tasks/katana.py +11 -15
  35. secator/tasks/maigret.py +3 -3
  36. secator/tasks/mapcidr.py +1 -0
  37. secator/tasks/msfconsole.py +3 -1
  38. secator/tasks/naabu.py +2 -1
  39. secator/tasks/nmap.py +14 -17
  40. secator/tasks/nuclei.py +4 -3
  41. secator/tasks/searchsploit.py +3 -2
  42. secator/tasks/subfinder.py +1 -0
  43. secator/tasks/wpscan.py +11 -13
  44. secator/utils.py +64 -82
  45. secator/utils_test.py +3 -2
  46. secator-0.3.6.dist-info/METADATA +411 -0
  47. secator-0.3.6.dist-info/RECORD +100 -0
  48. {secator-0.0.1.dist-info → secator-0.3.6.dist-info}/WHEEL +1 -2
  49. secator-0.0.1.dist-info/METADATA +0 -199
  50. secator-0.0.1.dist-info/RECORD +0 -114
  51. secator-0.0.1.dist-info/top_level.txt +0 -2
  52. tests/__init__.py +0 -0
  53. tests/integration/__init__.py +0 -0
  54. tests/integration/inputs.py +0 -42
  55. tests/integration/outputs.py +0 -392
  56. tests/integration/test_scans.py +0 -82
  57. tests/integration/test_tasks.py +0 -103
  58. tests/integration/test_workflows.py +0 -163
  59. tests/performance/__init__.py +0 -0
  60. tests/performance/loadtester.py +0 -56
  61. tests/unit/__init__.py +0 -0
  62. tests/unit/test_celery.py +0 -39
  63. tests/unit/test_scans.py +0 -0
  64. tests/unit/test_serializers.py +0 -51
  65. tests/unit/test_tasks.py +0 -348
  66. tests/unit/test_workflows.py +0 -96
  67. {secator-0.0.1.dist-info → secator-0.3.6.dist-info}/entry_points.txt +0 -0
  68. {secator-0.0.1.dist-info → secator-0.3.6.dist-info/licenses}/LICENSE +0 -0
@@ -0,0 +1,411 @@
1
+ Metadata-Version: 2.3
2
+ Name: secator
3
+ Version: 0.3.6
4
+ Summary: The pentester's swiss knife.
5
+ Project-URL: Homepage, https://github.com/freelabz/secator
6
+ Project-URL: Issues, https://github.com/freelabz/secator/issues
7
+ Author-email: FreeLabz <sales@freelabz.com>
8
+ License-File: LICENSE
9
+ Keywords: automation,cybersecurity,pentest,recon,vulnerability
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Intended Audience :: Information Technology
13
+ Classifier: License :: Free for non-commercial use
14
+ Classifier: Operating System :: Unix
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3.8
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Requires-Python: >=3.8
22
+ Requires-Dist: bs4<1
23
+ Requires-Dist: celery<6
24
+ Requires-Dist: cpe<2
25
+ Requires-Dist: dotmap<2
26
+ Requires-Dist: free-proxy<2
27
+ Requires-Dist: furl<3
28
+ Requires-Dist: humanize<5
29
+ Requires-Dist: ifaddr<1
30
+ Requires-Dist: jinja2<4
31
+ Requires-Dist: packaging<25
32
+ Requires-Dist: python-dotenv<2
33
+ Requires-Dist: pyyaml<7
34
+ Requires-Dist: requests<3
35
+ Requires-Dist: rich-click<1.7
36
+ Requires-Dist: rich<14
37
+ Requires-Dist: validators<1
38
+ Requires-Dist: xmltodict<1
39
+ Provides-Extra: build
40
+ Requires-Dist: hatch<2; extra == 'build'
41
+ Provides-Extra: dev
42
+ Requires-Dist: asciinema-automation<1; extra == 'dev'
43
+ Requires-Dist: coverage<8; extra == 'dev'
44
+ Requires-Dist: flake8<8; extra == 'dev'
45
+ Requires-Dist: watchdog<3; extra == 'dev'
46
+ Provides-Extra: google
47
+ Requires-Dist: google-api-python-client<3; extra == 'google'
48
+ Requires-Dist: gspread<7; extra == 'google'
49
+ Provides-Extra: mongodb
50
+ Requires-Dist: pymongo<5; extra == 'mongodb'
51
+ Provides-Extra: redis
52
+ Requires-Dist: redis<6; extra == 'redis'
53
+ Provides-Extra: trace
54
+ Requires-Dist: memray<2; extra == 'trace'
55
+ Requires-Dist: pyinstrument<5; extra == 'trace'
56
+ Provides-Extra: worker
57
+ Requires-Dist: eventlet<1; extra == 'worker'
58
+ Requires-Dist: flower<3; extra == 'worker'
59
+ Requires-Dist: gevent<25; extra == 'worker'
60
+ Description-Content-Type: text/markdown
61
+
62
+ <h1 align="center">
63
+ <img src="https://github.com/freelabz/secator/assets/9629314/ee203af4-e853-439a-af01-edeabfc4bf07/" width="400">
64
+ </h1>
65
+
66
+ <h4 align="center">The pentester's swiss knife.</h4>
67
+
68
+ <p align="center">
69
+ <!-- <a href="https://goreportcard.com/report/github.com/freelabz/secator"><img src="https://goreportcard.com/badge/github.com/freelabz/secator"></a> -->
70
+ <img src="https://img.shields.io/badge/python-3.6-blue.svg">
71
+ <a href="https://github.com/freelabz/secator/releases"><img src="https://img.shields.io/github/release/freelabz/secator"></a>
72
+ <a href="https://github.com/freelabz/secator/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-BSL%201.1-brightgreen.svg"></a>
73
+ <a href="https://pypi.org/project/secator/"><img src="https://img.shields.io/pypi/dm/secator"></a>
74
+ <a href="https://twitter.com/freelabz"><img src="https://img.shields.io/twitter/follow/freelabz.svg?logo=twitter"></a>
75
+ <a href="https://youtube.com/@FreeLabz"><img src="https://img.shields.io/youtube/channel/subscribers/UCu-F6SpU0h2NP18zBBP04cw?style=social&label=Subscribe%20%40FreeLabz"></a>
76
+ <!-- <a href="https://discord.gg/freelabz"><img src="https://img.shields.io/discord/695645237418131507.svg?logo=discord"></a> -->
77
+ </p>
78
+
79
+
80
+ <p align="center">
81
+ <a href="#features">Features</a> •
82
+ <a href="#supported-commands">Supported commands</a> •
83
+ <a href="#install-secator">Installation</a> •
84
+ <a href="#usage">Usage</a> •
85
+ <a href="https://docs.freelabz.com">Documentation</a>
86
+ </p>
87
+
88
+ `secator` is a task and workflow runner used for security assessments. It supports dozens of well-known security tools
89
+ and it is designed to improve productivity for pentesters and security researchers.
90
+
91
+ # Features
92
+
93
+ ![](images/short_demo.gif)
94
+
95
+ * **Curated list of commands**
96
+
97
+ * **Unified input options**
98
+
99
+ * **Unified output schema**
100
+
101
+ * **CLI and library usage**
102
+
103
+ * **Distributed options with Celery**
104
+
105
+ * **Complexity from simple tasks to complex workflows**
106
+
107
+ * **Customizable**
108
+
109
+
110
+ ## Supported tools
111
+
112
+ `secator` integrates the following tools:
113
+
114
+ | Name | Description | Category |
115
+ |---------------------------------------------------------------|--------------------------------------------------------------------------------|----------------|
116
+ | [httpx](https://github.com/projectdiscovery/httpx) | Fast HTTP prober. | `http` |
117
+ | [cariddi](https://github.com/edoardottt/cariddi) | Fast crawler and endpoint secrets / api keys / tokens matcher. | `http/crawler` |
118
+ | [gau](https://github.com/lc/gau) | Offline URL crawler (Alien Vault, The Wayback Machine, Common Crawl, URLScan). | `http/crawler` |
119
+ | [gospider](https://github.com/jaeles-project/gospider) | Fast web spider written in Go. | `http/crawler` |
120
+ | [katana](https://github.com/projectdiscovery/katana) | Next-generation crawling and spidering framework. | `http/crawler` |
121
+ | [dirsearch](https://github.com/maurosoria/dirsearch) | Web path discovery. | `http/fuzzer` |
122
+ | [feroxbuster](https://github.com/epi052/feroxbuster) | Simple, fast, recursive content discovery tool written in Rust. | `http/fuzzer` |
123
+ | [ffuf](https://github.com/ffuf/ffuf) | Fast web fuzzer written in Go. | `http/fuzzer` |
124
+ | [h8mail](https://github.com/khast3x/h8mail) | Email OSINT and breach hunting tool. | `osint` |
125
+ | [dnsx](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit designed for running DNS queries. | `recon/dns` |
126
+ | [dnsxbrute](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit designed for running DNS queries (bruteforce mode). | `recon/dns` |
127
+ | [subfinder](https://github.com/projectdiscovery/subfinder) | Fast subdomain finder. | `recon/dns` |
128
+ | [fping](https://fping.org/) | Find alive hosts on local networks. | `recon/ip` |
129
+ | [mapcidr](https://github.com/projectdiscovery/mapcidr) | Expand CIDR ranges into IPs. | `recon/ip` |
130
+ | [naabu](https://github.com/projectdiscovery/naabu) | Fast port discovery tool. | `recon/port` |
131
+ | [maigret](https://github.com/soxoj/maigret) | Hunt for user accounts across many websites. | `recon/user` |
132
+ | [gf](https://github.com/tomnomnom/gf) | A wrapper around grep to avoid typing common patterns. | `tagger` |
133
+ | [grype](https://github.com/anchore/grype) | A vulnerability scanner for container images and filesystems. | `vuln/code` |
134
+ | [dalfox](https://github.com/hahwul/dalfox) | Powerful XSS scanning tool and parameter analyzer. | `vuln/http` |
135
+ | [msfconsole](https://docs.rapid7.com/metasploit/msf-overview) | CLI to access and work with the Metasploit Framework. | `vuln/http` |
136
+ | [wpscan](https://github.com/wpscanteam/wpscan) | WordPress Security Scanner | `vuln/multi` |
137
+ | [nmap](https://github.com/nmap/nmap) | Vulnerability scanner using NSE scripts. | `vuln/multi` |
138
+ | [nuclei](https://github.com/projectdiscovery/nuclei) | Fast and customisable vulnerability scanner based on simple YAML based DSL. | `vuln/multi` |
139
+ | [searchsploit](https://gitlab.com/exploit-database/exploitdb) | Exploit searcher. | `exploit/search` |
140
+
141
+ Feel free to request new tools to be added by opening an issue, but please
142
+ check that the tool 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)).
143
+
144
+
145
+ ## Installation
146
+
147
+ ### Installing secator
148
+
149
+ <details>
150
+ <summary>Pipx</summary>
151
+
152
+ ```sh
153
+ pipx install secator
154
+ ```
155
+
156
+ </details>
157
+
158
+ <details>
159
+ <summary>Pip</summary>
160
+
161
+ ```sh
162
+ pip install secator
163
+ ```
164
+
165
+ </details>
166
+
167
+ <details>
168
+ <summary>Bash</summary>
169
+
170
+ ```sh
171
+ wget -O - https://raw.githubusercontent.com/freelabz/secator/main/scripts/install.sh | sh
172
+ ```
173
+
174
+ </details>
175
+
176
+ <details>
177
+ <summary>Docker</summary>
178
+
179
+ ```sh
180
+ docker run -it --rm --net=host -v $HOME/.secator:/root/.secator freelabz/secator --help
181
+ ```
182
+
183
+ The volume mount `-v` is necessary to save all `secator` reports to your host machine.
184
+
185
+ You can set up an alias to facilitate running `secator` from Docker:
186
+ ```sh
187
+ alias secator="docker run -it --rm --net=host -v $HOME/.secator:/root/.secator freelabz/secator"
188
+ secator --help
189
+ ```
190
+
191
+ </details>
192
+
193
+ <details>
194
+ <summary>Docker Compose</summary>
195
+
196
+ ```sh
197
+ git clone https://github.com/freelabz/secator
198
+ cd secator
199
+ docker-compose up -d
200
+ docker-compose exec secator secator --help
201
+ ```
202
+
203
+ </details>
204
+
205
+ ***Note:*** If you chose the Bash, Docker or Docker Compose installation methods, you can skip the next sections and go straight to [Usage](#usage).
206
+
207
+ ### Installing languages
208
+
209
+ `secator` uses external tools, so you might need to install languages used by those tools assuming they are not already installed on your system.
210
+
211
+ We provide utilities to install required languages if you don't manage them externally:
212
+
213
+ <details>
214
+ <summary>Go</summary>
215
+
216
+ ```sh
217
+ secator install langs go
218
+ ```
219
+
220
+ </details>
221
+
222
+ <details>
223
+ <summary>Ruby</summary>
224
+
225
+ ```sh
226
+ secator install langs ruby
227
+ ```
228
+
229
+ </details>
230
+
231
+ ### Installing tools
232
+
233
+ `secator` does not install any of the external tools it supports by default.
234
+
235
+ We provide utilities to install or update each supported tool which should work on all systems supporting `apt`:
236
+
237
+ <details>
238
+ <summary>All tools</summary>
239
+
240
+ ```sh
241
+ secator install tools
242
+ ```
243
+
244
+ </details>
245
+
246
+ <details>
247
+ <summary>Specific tools</summary>
248
+
249
+ ```sh
250
+ secator install tools <TOOL_NAME>
251
+ ```
252
+
253
+ For instance, to install `httpx`, use:
254
+
255
+ ```sh
256
+ secator install tools httpx
257
+ ```
258
+
259
+ </details>
260
+
261
+ Please make sure you are using the latest available versions for each tool before you run secator or you might run into parsing / formatting issues.
262
+
263
+ ### Installing addons
264
+
265
+ `secator` comes installed with the minimum amount of dependencies.
266
+
267
+ There are several addons available for `secator`:
268
+
269
+ <details>
270
+ <summary>worker</summary>
271
+
272
+ Add support for Celery workers (see [Distributed runs with Celery](https://docs.freelabz.com/in-depth/distributed-runs-with-celery)).
273
+ ```sh
274
+ secator install addons worker
275
+ ```
276
+
277
+ </details>
278
+
279
+
280
+ <details>
281
+ <summary>google</summary>
282
+
283
+ Add support for Google Drive exporter (`-o gdrive`).
284
+
285
+ ```sh
286
+ secator install addons google
287
+ ```
288
+
289
+ </details>
290
+
291
+ <details>
292
+ <summary>mongodb</summary>
293
+
294
+ Add support for MongoDB driver (`-driver mongodb`).
295
+ ```sh
296
+ secator install addons mongodb
297
+ ```
298
+
299
+ </details>
300
+
301
+ <details>
302
+ <summary>redis</summary>
303
+
304
+ Add support for Redis backend (Celery).
305
+
306
+ ```sh
307
+ secator install addons redis
308
+ ```
309
+
310
+ </details>
311
+
312
+ <details>
313
+ <summary>dev</summary>
314
+
315
+ Add development tools like `coverage` and `flake8` required for running tests.
316
+
317
+ ```sh
318
+ secator install addons dev
319
+ ```
320
+
321
+ </details>
322
+
323
+ <details>
324
+ <summary>trace</summary>
325
+
326
+ Add tracing tools like `memray` and `pyinstrument` required for tracing functions.
327
+
328
+ ```sh
329
+ secator install addons trace
330
+ ```
331
+
332
+ </details>
333
+
334
+ <details>
335
+ <summary>build</summary>
336
+
337
+ Add `hatch` for building and publishing the PyPI package.
338
+
339
+ ```sh
340
+ secator install addons build
341
+ ```
342
+
343
+ </details>
344
+
345
+
346
+ ### Install CVEs
347
+
348
+ `secator` makes remote API calls to https://cve.circl.lu/ to get in-depth information about the CVEs it encounters.
349
+ We provide a subcommand to download all known CVEs locally so that future lookups are made from disk instead:
350
+ ```sh
351
+ secator install cves
352
+ ```
353
+
354
+ ### Checking installation health
355
+
356
+ To figure out which languages or tools are installed on your system (along with their version):
357
+ ```sh
358
+ secator health
359
+ ```
360
+
361
+ ## Usage
362
+ ```sh
363
+ secator --help
364
+ ```
365
+ ![](images/help.png)
366
+
367
+
368
+ ### Usage examples
369
+
370
+ Run a fuzzing task (`ffuf`):
371
+
372
+ ```sh
373
+ secator x ffuf http://testphp.vulnweb.com/FUZZ
374
+ ```
375
+
376
+ Run a url crawl workflow:
377
+
378
+ ```sh
379
+ secator w url_crawl http://testphp.vulnweb.com
380
+ ```
381
+
382
+ Run a host scan:
383
+
384
+ ```sh
385
+ secator s host mydomain.com
386
+ ```
387
+
388
+ and more... to list all tasks / workflows / scans that you can use:
389
+ ```sh
390
+ secator x --help
391
+ secator w --help
392
+ secator s --help
393
+ ```
394
+
395
+ ## Learn more
396
+
397
+ To go deeper with `secator`, check out:
398
+ * Our complete [documentation](https://docs.freelabz.com)
399
+ * Our getting started [tutorial video](https://youtu.be/-JmUTNWQDTQ?si=qpAClDWMXo2zwUK7)
400
+ * Our [Medium post](https://medium.com/p/09333f3d3682)
401
+ * Follow us on social media: [@freelabz](https://twitter.com/freelabz) on Twitter and [@FreeLabz](https://youtube.com/@FreeLabz) on YouTube
402
+
403
+ ## Stats
404
+
405
+ <a href="https://star-history.com/#freelabz/secator&Date">
406
+ <picture>
407
+ <source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=freelabz/secator&type=Date&theme=dark" />
408
+ <source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=freelabz/secator&type=Date" />
409
+ <img alt="Star History Chart" src="https://api.star-history.com/svg?repos=freelabz/secator&type=Date" />
410
+ </picture>
411
+ </a>
@@ -0,0 +1,100 @@
1
+ secator/.gitignore,sha256=da8MUc3hdb6Mo0WjZu2upn5uZMbXcBGvhdhTQ1L89HI,3093
2
+ secator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ secator/celery.py,sha256=4jryWgB7Ydqtosc1HrE2VkMhWXqdhb-A8wJiUem4Mh4,12266
4
+ secator/cli.py,sha256=zwHB7JcWppX38IE39p4eSUUYDP5SdehYOJ-ByKNtVDw,31565
5
+ secator/config.py,sha256=iOeRzq7u1rvR1-Oq5v9wGxQYB613X0xKGLIcrfhEGc4,3693
6
+ secator/decorators.py,sha256=xH9QzAPd1DspoAzFv54Ss4JhCiZ9dd1zD5cdYGE7WKY,10784
7
+ secator/definitions.py,sha256=ZFDPZW5R4CiAMWjyGvWmrePEljiWFyabgoTVM5Zedt4,7599
8
+ secator/installer.py,sha256=wa5YFmbqMEpVI0jNiPvNE8-IDvr6vHNcdALV5rFYBr4,9329
9
+ secator/report.py,sha256=g0stVCcx9klbUS01uKvWcxNE9MJfNFMexYA2SoDIWJU,2596
10
+ secator/rich.py,sha256=W4PipeZfIVnERfW3ySeWSvnZ90jhCFiABBoERYy_6kM,3177
11
+ secator/utils.py,sha256=9bfNqwlk55XBfT475rTafIwOwtEDFPIde417gxGTbEg,10945
12
+ secator/utils_test.py,sha256=xVF9RH1-p3X0TdmODJi4k62H7Xth96Ib7qnUZ4vAJs8,5043
13
+ secator/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ secator/configs/profiles/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
15
+ secator/configs/profiles/aggressive.yaml,sha256=JilVySABlSCYEFMjH7V0Oc3dAVlkfHOh1odTGhtm7BQ,108
16
+ secator/configs/profiles/default.yaml,sha256=kDuOF1Qkpv4oz1GZ-OwDxbi5pptAqShsCqdzkBOxXfw,149
17
+ secator/configs/profiles/stealth.yaml,sha256=Ud3EMZ2yRj0AT6w-AfV7fWUBYib9VAFp46GPpof9YaU,107
18
+ secator/configs/scans/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
+ secator/configs/scans/domain.yaml,sha256=Dkm5dU2NdUTInkWD5cmVczvhUH0soaKPtoESeg8BVsQ,265
20
+ secator/configs/scans/host.yaml,sha256=tobz6yGeYlVnGwLVI9RLJT6MDLnGmQVVj8EOwAdksfw,189
21
+ secator/configs/scans/network.yaml,sha256=ghlgIwkWhJKQeT6V5TE51dFL-VRszWJtm4qx4ImjEEY,252
22
+ secator/configs/scans/subdomain.yaml,sha256=I007b1V5Rmm_4R9mODp6jxonHNIjXkQT9sU-AOxLSIo,123
23
+ secator/configs/scans/url.yaml,sha256=zhRiqyHq7BZHtKsmjpMvp3vmt5DRNtmfqW44sZm1tWw,158
24
+ secator/configs/workflows/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ secator/configs/workflows/cidr_recon.yaml,sha256=u1QKDKGbpJEez5QqC20Yd_nBLZd_z4nA-XFRQV7pVI4,558
26
+ secator/configs/workflows/code_scan.yaml,sha256=3H8H55NVskiDbBwNueVF8FUYkquEQn2C6evnid9zhB4,207
27
+ secator/configs/workflows/host_recon.yaml,sha256=wHXMycHQpWq8gVc8YSr6Kv-_0CtIfmkr6j7AY6Lah2w,1018
28
+ secator/configs/workflows/port_scan.yaml,sha256=DPXL8m96h3oFdk7Lw_6dP1j0pl_qzi_kWszZvaId5f0,796
29
+ secator/configs/workflows/subdomain_recon.yaml,sha256=qMvvKj0rWO1xzMiaT6VZMysXYGJFrGgGHP0weYEhs2g,798
30
+ secator/configs/workflows/url_crawl.yaml,sha256=h74dvDBNLuY1EHc9FMby3ydr34VH1qFJHQKUaIIYpcw,573
31
+ secator/configs/workflows/url_dirsearch.yaml,sha256=6UiQNge1WkryetOxwqzERra0xmNG0U8Y8CWKFLTyUUQ,677
32
+ secator/configs/workflows/url_fuzz.yaml,sha256=K1RkplXrgc7q2YJVv5A6B5MMkAzIIv31HInhRCKMpyI,774
33
+ secator/configs/workflows/url_nuclei.yaml,sha256=Qigz-hJzM7GeNA_UD46dThVIoqbWlBgiYb_i5fSyJiI,265
34
+ secator/configs/workflows/url_vuln.yaml,sha256=RNeS6o1wworxCznvnAgrfzVnMayD-9hFQ0-W0NbqMJY,1345
35
+ secator/configs/workflows/user_hunt.yaml,sha256=e5b-CkkjhOPE8Yh5LUh0K60GKmxTgn4s-Joo7m9jKrk,180
36
+ secator/configs/workflows/wordpress.yaml,sha256=QgBUNi8Gav_efbmczUGfzlByWsmogTmGtu1MwAlvQts,279
37
+ secator/exporters/__init__.py,sha256=2nBPOOas9Fp4nmo9pjSw3mvklZNHL8BmH88w_i-eaJc,356
38
+ secator/exporters/_base.py,sha256=-RrrwO_qp0ETLLHSta4T-zKtMbWdiEmz1Cw5mNo6USU,77
39
+ secator/exporters/csv.py,sha256=xsPMljzJhoTc8lcfxWBIKH2niK6KeYL7Bx2NzpdsYw0,982
40
+ secator/exporters/gdrive.py,sha256=VI6r1vlChz39myaN4sFvOlHO32SAhZS5_mI5EwGUdq8,4056
41
+ secator/exporters/json.py,sha256=cWkDugUdy-lbcPFKNgBrRFxHspiFhjVbJfdDABjJ9uk,431
42
+ secator/exporters/table.py,sha256=RHQoaFeeyeoBGNucJgrlk2KtmVqe9BGNtAAYee7xJ8Y,210
43
+ secator/exporters/txt.py,sha256=QbiwWYGgHpITGw1sL2TX-S3AfmBdJ-VOWkPJzuBvOu4,785
44
+ secator/hooks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ secator/hooks/mongodb.py,sha256=GTd6BeiGtWUPWjmXKmalZYNoeGNZfNqEJ6BxRJh1Mr8,7149
46
+ secator/output_types/__init__.py,sha256=uj6AXDeorECPwhwekNVGjQbGv41jHG_8udkuoc4XzW0,854
47
+ secator/output_types/_base.py,sha256=bld1ED0pN1hOvwBV2canrlKrfBCgawzWKPDH6F3jVQE,2469
48
+ secator/output_types/exploit.py,sha256=NIa0mbhm3ZTyV5kyjEvrI5QK2swMpdMCj3f1gIWcsro,1581
49
+ secator/output_types/ip.py,sha256=ySEqH3Gs7U41I1kS8olZ_p3Mk7JryEbXHLyexqlBQNA,995
50
+ secator/output_types/port.py,sha256=1ZmV4FDvwk1dvFXySnz5yIp13hbaRhnunxnETm66Os0,1607
51
+ secator/output_types/progress.py,sha256=u_-4IiECTSCJf-X_RkFOoFyb8mrff2rMcm8GGqLZ8hs,1231
52
+ secator/output_types/record.py,sha256=WnI0yvwzrO2Wt7OWciHMOuIRRLbuSOAJczdNshV7tYU,1192
53
+ secator/output_types/subdomain.py,sha256=lmCoK7_8I4FXWgl9kToRvDn3gr3E3uBTaQzFAOHbswE,1343
54
+ secator/output_types/tag.py,sha256=8AlT0VigsYP04GN8sPCTM07IlL5uMUmFgsNa9IDCoyY,1431
55
+ secator/output_types/target.py,sha256=gJWzzqhal34Cnl9oAKf0m1MSaGxRtUGdA2XbkhD_yd0,848
56
+ secator/output_types/url.py,sha256=yDozBXCuPfuybH1iX_xGmbCJPXO6Ei14C8Hp5CnzNbE,2535
57
+ secator/output_types/user_account.py,sha256=EiT2BFl2LTCdqHF1meoMEKVhjKGroyf8-JoWHPuBOTc,1378
58
+ secator/output_types/vulnerability.py,sha256=p0DTbr5w7Vv5D3dgbdnvsG5qXzqVVk4YPOPWYS1lxmM,2843
59
+ secator/runners/__init__.py,sha256=EBbOk37vkBy9p8Hhrbi-2VtM_rTwQ3b-0ggTyiD22cE,290
60
+ secator/runners/_base.py,sha256=jhglHTz1yf-LBdCdTX2YyAt664yBeQkkySQCrJYpjnM,28290
61
+ secator/runners/_helpers.py,sha256=7UUboSsr4b6srIOOHtSSYhJ9Jxq_qaMVbbF2gVEBnR4,3703
62
+ secator/runners/command.py,sha256=JzdwhbvsDujOyE-i_XgBGH-g6jaEoDNwL7CU2BIZ-Ng,18737
63
+ secator/runners/scan.py,sha256=ZRfSgJd0RxtmxWp7cDGZsnmhdo-t1TSBH26XKxvH94k,1675
64
+ secator/runners/task.py,sha256=hv9O8yeVBHuznDoNeQuDPxB6Doc2MKV_P838qJdO7b0,2772
65
+ secator/runners/workflow.py,sha256=tQD03JqebVve9ncR9gxpzcgTsP6yvAWjUs2YBX80jzc,3717
66
+ secator/serializers/__init__.py,sha256=OP5cmFl77ovgSCW_IDcZ21St2mUt5UK4QHfrsK2KvH8,248
67
+ secator/serializers/dataclass.py,sha256=g5gMT4NwndjhGcGbFuYEs07AZW_Q_m9orov_edVEGlI,792
68
+ secator/serializers/json.py,sha256=XwuSQOBwrOAs16F5HtY-Q-rAGAxfNvlq3z-Nb2gwigE,304
69
+ secator/serializers/regex.py,sha256=hGJ_1JSOv9xPtfn_umHlsjnR_alnsDFv-UmjYCC3vwU,314
70
+ secator/tasks/__init__.py,sha256=Wp2QF5QS2e_BlVygsIEFbmYPTfTg7v_Vd3LQJeXTC7I,344
71
+ secator/tasks/_categories.py,sha256=w4vxKffTQFJEHNzi6BV5DslGpnSAlKEN0K7H6slG3Vg,9015
72
+ secator/tasks/cariddi.py,sha256=GKVJ8nWtJu9fB_FhAVYA2TX3fMdKYdbMpH2IhCkj_no,3155
73
+ secator/tasks/dalfox.py,sha256=nrLkIbTNz_J7LgUy_3kBgzhTUbQi3RmiSJhc9HWa05c,1744
74
+ secator/tasks/dirsearch.py,sha256=2hJeJZJwaAl3-UAjBwlmjW1w9bxjVWxxwfcaTTxqClc,2387
75
+ secator/tasks/dnsx.py,sha256=H_3z87KAK-ndAQgCwS8TRWaUX_Hh54qEeuKQCS4rjBw,1771
76
+ secator/tasks/dnsxbrute.py,sha256=obr2SsxIJlO2KckxrCOPHvvzyfequFW6-D4ZAUq4Egk,1224
77
+ secator/tasks/feroxbuster.py,sha256=9QQpd8T0CSMfXf_BMmCX4LeIogyvsc_ccXFJnEocxVo,3011
78
+ secator/tasks/ffuf.py,sha256=ocmFfJJoV4zF8zkhUxHqUyDuJe9flmuijHCq_xk2pa4,2558
79
+ secator/tasks/fping.py,sha256=P2EAPUGgwEC4Geh2zUbBPKF9bdqrlrdDg-R_TYLTFng,1127
80
+ secator/tasks/gau.py,sha256=Sq5l277cGxpT2bB5s1RqrggP804RKbC6xxgLDZZzLFs,1391
81
+ secator/tasks/gf.py,sha256=WlhoEyL6xE79w6nE5XNSXHs-jVeO10njqJxBF8w20sA,945
82
+ secator/tasks/gospider.py,sha256=_UlTb9G5Ss8D68NT53s0_rI6TnG00Ph0yxWyHic7cKs,2172
83
+ secator/tasks/grype.py,sha256=n60Zs9d1NWJFHQ0DwIZib5wu3xH-tV2RzgLYwuQSTo4,2413
84
+ secator/tasks/h8mail.py,sha256=hZBpfV6M1mbpD_PbDHxLI5HMvqAvTeY_W0lbkq3Hugo,2037
85
+ secator/tasks/httpx.py,sha256=NuycnbPejEZoUdFYFXyahYiZnzhz1cPJarHdP7WyP6c,3979
86
+ secator/tasks/katana.py,sha256=Xa03zP2-78Ns59unUPrR_MHSd1DugTQlThxl8cL6pX4,4370
87
+ secator/tasks/maigret.py,sha256=PZDTICJ4LZF3joKe-dXu2alffakD_1sxBuNEUBtJDm4,2098
88
+ secator/tasks/mapcidr.py,sha256=7aa2WXQATWgIQo5oA12URjAg80L6MFMGdxScxls8DuA,980
89
+ secator/tasks/msfconsole.py,sha256=VlhEzsdYMHb6eJy4HBRdXMtRKhdzf5KtQGh7qZqO9Rs,6073
90
+ secator/tasks/naabu.py,sha256=RNs4NCZXgKhPqzR78l6l61tau0mGHuj6C3If7fimpgs,1594
91
+ secator/tasks/nmap.py,sha256=LS5FBo-vFxbHVK4DxF5x-O2cAvAK3zL1pROT1GddX9E,9459
92
+ secator/tasks/nuclei.py,sha256=7MlTygHd4EVz81ndrVwP5y6PZ-4j-Y8Oxuk3G3ayHPI,3343
93
+ secator/tasks/searchsploit.py,sha256=RD2uv3GFI3Eb-DiTzJp59jyXnvAZRACq-WjDI1NgFM0,1664
94
+ secator/tasks/subfinder.py,sha256=cpFyFCpVaDZ3QAjNId26ezOwntn3CA5Uk-AC2l0mo0E,1087
95
+ secator/tasks/wpscan.py,sha256=UVWnBPOQ1RDB2wzMswWR6vc6cucYgHtuJ8pLZoqCM40,5434
96
+ secator-0.3.6.dist-info/METADATA,sha256=HaAuvqTAtZiaWWcTsn4KcZditRPlRYdE5nZQIboxwbk,13933
97
+ secator-0.3.6.dist-info/WHEEL,sha256=K0BPUNF1N3kQ9olb8aVEtkObePEjdr2JOLT1N83EVws,87
98
+ secator-0.3.6.dist-info/entry_points.txt,sha256=lPgsqqUXWgiuGSfKy-se5gHdQlAXIwS_A46NYq7Acic,44
99
+ secator-0.3.6.dist-info/licenses/LICENSE,sha256=19W5Jsy4WTctNkqmZIqLRV1gTDOp01S3LDj9iSgWaJ0,2867
100
+ secator-0.3.6.dist-info/RECORD,,
@@ -1,5 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: hatchling 1.24.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
-