secator 0.6.0__tar.gz → 0.8.0__tar.gz

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 (226) hide show
  1. secator-0.8.0/.docker/Dockerfile.alpine +36 -0
  2. secator-0.8.0/.docker/Dockerfile.arch +38 -0
  3. secator-0.8.0/.docker/Dockerfile.debian +41 -0
  4. secator-0.8.0/.docker/Dockerfile.kali +40 -0
  5. secator-0.8.0/.docker/Dockerfile.osx +42 -0
  6. secator-0.8.0/.docker/Dockerfile.ubuntu +40 -0
  7. secator-0.8.0/.docker/build_all.sh +30 -0
  8. secator-0.8.0/.dockerignore +1 -0
  9. {secator-0.6.0 → secator-0.8.0}/CHANGELOG.md +76 -0
  10. secator-0.8.0/Dockerfile +1 -0
  11. {secator-0.6.0 → secator-0.8.0}/PKG-INFO +59 -48
  12. {secator-0.6.0 → secator-0.8.0}/README.md +46 -43
  13. secator-0.8.0/pyproject.toml +98 -0
  14. secator-0.8.0/secator/celery.py +344 -0
  15. secator-0.8.0/secator/celery_utils.py +268 -0
  16. {secator-0.6.0 → secator-0.8.0}/secator/cli.py +427 -176
  17. {secator-0.6.0 → secator-0.8.0}/secator/config.py +114 -68
  18. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/host_recon.yaml +5 -3
  19. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/port_scan.yaml +7 -3
  20. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/subdomain_recon.yaml +2 -2
  21. secator-0.8.0/secator/configs/workflows/url_bypass.yaml +10 -0
  22. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/url_dirsearch.yaml +1 -1
  23. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/url_vuln.yaml +1 -1
  24. {secator-0.6.0 → secator-0.8.0}/secator/decorators.py +170 -92
  25. {secator-0.6.0 → secator-0.8.0}/secator/definitions.py +11 -4
  26. {secator-0.6.0 → secator-0.8.0}/secator/exporters/__init__.py +7 -5
  27. secator-0.8.0/secator/exporters/console.py +10 -0
  28. secator-0.8.0/secator/exporters/csv.py +37 -0
  29. {secator-0.6.0 → secator-0.8.0}/secator/exporters/gdrive.py +16 -11
  30. {secator-0.6.0 → secator-0.8.0}/secator/exporters/json.py +3 -1
  31. secator-0.8.0/secator/exporters/table.py +35 -0
  32. secator-0.8.0/secator/exporters/txt.py +28 -0
  33. secator-0.8.0/secator/hooks/gcs.py +53 -0
  34. {secator-0.6.0 → secator-0.8.0}/secator/hooks/mongodb.py +53 -27
  35. secator-0.8.0/secator/installer.py +556 -0
  36. secator-0.8.0/secator/output_types/__init__.py +42 -0
  37. {secator-0.6.0 → secator-0.8.0}/secator/output_types/_base.py +11 -1
  38. secator-0.8.0/secator/output_types/error.py +36 -0
  39. {secator-0.6.0 → secator-0.8.0}/secator/output_types/exploit.py +12 -8
  40. secator-0.8.0/secator/output_types/info.py +24 -0
  41. {secator-0.6.0 → secator-0.8.0}/secator/output_types/ip.py +8 -1
  42. {secator-0.6.0 → secator-0.8.0}/secator/output_types/port.py +9 -2
  43. {secator-0.6.0 → secator-0.8.0}/secator/output_types/progress.py +5 -0
  44. {secator-0.6.0 → secator-0.8.0}/secator/output_types/record.py +5 -3
  45. secator-0.8.0/secator/output_types/stat.py +33 -0
  46. {secator-0.6.0 → secator-0.8.0}/secator/output_types/subdomain.py +1 -1
  47. {secator-0.6.0 → secator-0.8.0}/secator/output_types/tag.py +8 -6
  48. {secator-0.6.0 → secator-0.8.0}/secator/output_types/target.py +2 -2
  49. {secator-0.6.0 → secator-0.8.0}/secator/output_types/url.py +14 -11
  50. {secator-0.6.0 → secator-0.8.0}/secator/output_types/user_account.py +6 -6
  51. {secator-0.6.0 → secator-0.8.0}/secator/output_types/vulnerability.py +8 -6
  52. secator-0.8.0/secator/output_types/warning.py +24 -0
  53. secator-0.8.0/secator/report.py +128 -0
  54. {secator-0.6.0 → secator-0.8.0}/secator/rich.py +44 -39
  55. secator-0.8.0/secator/runners/_base.py +901 -0
  56. secator-0.8.0/secator/runners/_helpers.py +86 -0
  57. secator-0.8.0/secator/runners/celery.py +18 -0
  58. secator-0.8.0/secator/runners/command.py +860 -0
  59. {secator-0.6.0 → secator-0.8.0}/secator/runners/scan.py +8 -24
  60. secator-0.8.0/secator/runners/task.py +74 -0
  61. {secator-0.6.0 → secator-0.8.0}/secator/runners/workflow.py +41 -40
  62. secator-0.8.0/secator/scans/__init__.py +28 -0
  63. {secator-0.6.0 → secator-0.8.0}/secator/serializers/dataclass.py +6 -0
  64. secator-0.8.0/secator/serializers/json.py +20 -0
  65. secator-0.8.0/secator/serializers/regex.py +25 -0
  66. {secator-0.6.0 → secator-0.8.0}/secator/tasks/_categories.py +147 -42
  67. secator-0.8.0/secator/tasks/bbot.py +295 -0
  68. secator-0.8.0/secator/tasks/bup.py +99 -0
  69. {secator-0.6.0 → secator-0.8.0}/secator/tasks/cariddi.py +38 -49
  70. {secator-0.6.0 → secator-0.8.0}/secator/tasks/dalfox.py +3 -0
  71. {secator-0.6.0 → secator-0.8.0}/secator/tasks/dirsearch.py +14 -25
  72. secator-0.8.0/secator/tasks/dnsx.py +76 -0
  73. {secator-0.6.0 → secator-0.8.0}/secator/tasks/dnsxbrute.py +4 -1
  74. {secator-0.6.0 → secator-0.8.0}/secator/tasks/feroxbuster.py +10 -20
  75. {secator-0.6.0 → secator-0.8.0}/secator/tasks/ffuf.py +3 -2
  76. {secator-0.6.0 → secator-0.8.0}/secator/tasks/fping.py +4 -4
  77. {secator-0.6.0 → secator-0.8.0}/secator/tasks/gau.py +5 -0
  78. {secator-0.6.0 → secator-0.8.0}/secator/tasks/gf.py +2 -2
  79. {secator-0.6.0 → secator-0.8.0}/secator/tasks/gospider.py +4 -0
  80. {secator-0.6.0 → secator-0.8.0}/secator/tasks/grype.py +11 -13
  81. secator-0.8.0/secator/tasks/h8mail.py +70 -0
  82. {secator-0.6.0 → secator-0.8.0}/secator/tasks/httpx.py +58 -21
  83. {secator-0.6.0 → secator-0.8.0}/secator/tasks/katana.py +19 -23
  84. {secator-0.6.0 → secator-0.8.0}/secator/tasks/maigret.py +27 -25
  85. {secator-0.6.0 → secator-0.8.0}/secator/tasks/mapcidr.py +2 -3
  86. {secator-0.6.0 → secator-0.8.0}/secator/tasks/msfconsole.py +22 -19
  87. {secator-0.6.0 → secator-0.8.0}/secator/tasks/naabu.py +18 -2
  88. {secator-0.6.0 → secator-0.8.0}/secator/tasks/nmap.py +82 -55
  89. {secator-0.6.0 → secator-0.8.0}/secator/tasks/nuclei.py +13 -3
  90. {secator-0.6.0 → secator-0.8.0}/secator/tasks/searchsploit.py +26 -11
  91. {secator-0.6.0 → secator-0.8.0}/secator/tasks/subfinder.py +5 -1
  92. {secator-0.6.0 → secator-0.8.0}/secator/tasks/wpscan.py +91 -94
  93. {secator-0.6.0 → secator-0.8.0}/secator/template.py +61 -45
  94. secator-0.8.0/secator/thread.py +24 -0
  95. secator-0.8.0/secator/utils.py +780 -0
  96. {secator-0.6.0 → secator-0.8.0}/secator/utils_test.py +48 -23
  97. secator-0.8.0/secator/workflows/__init__.py +28 -0
  98. {secator-0.6.0 → secator-0.8.0}/tests/fixtures/ls.py +1 -1
  99. {secator-0.6.0 → secator-0.8.0}/tests/integration/inputs.py +5 -4
  100. {secator-0.6.0 → secator-0.8.0}/tests/integration/outputs.py +40 -23
  101. {secator-0.6.0 → secator-0.8.0}/tests/integration/setup.sh +1 -0
  102. secator-0.8.0/tests/integration/test_addons.py +23 -0
  103. secator-0.8.0/tests/integration/test_celery.py +195 -0
  104. {secator-0.6.0 → secator-0.8.0}/tests/integration/test_scans.py +5 -26
  105. {secator-0.6.0 → secator-0.8.0}/tests/integration/test_tasks.py +11 -40
  106. secator-0.8.0/tests/integration/test_tasks_categories.py +19 -0
  107. {secator-0.6.0 → secator-0.8.0}/tests/integration/test_worker.py +20 -10
  108. {secator-0.6.0 → secator-0.8.0}/tests/integration/test_workflows.py +23 -38
  109. {secator-0.6.0 → secator-0.8.0}/tests/integration/wordlist.txt +2 -1
  110. secator-0.8.0/tests/performance/loadtester.py +77 -0
  111. secator-0.8.0/tests/performance/test_worker.py +31 -0
  112. secator-0.8.0/tests/unit/test_celery.py +117 -0
  113. secator-0.8.0/tests/unit/test_cli.py +94 -0
  114. secator-0.8.0/tests/unit/test_config.py +156 -0
  115. {secator-0.6.0 → secator-0.8.0}/tests/unit/test_offline.py +18 -10
  116. secator-0.8.0/tests/unit/test_runners.py +435 -0
  117. {secator-0.6.0 → secator-0.8.0}/tests/unit/test_tasks.py +68 -113
  118. secator-0.8.0/tests/unit/test_tasks_categories.py +24 -0
  119. secator-0.8.0/tests/unit/test_template.py +126 -0
  120. secator-0.8.0/tests/unit/test_utils.py +40 -0
  121. secator-0.6.0/Dockerfile +0 -49
  122. secator-0.6.0/pyproject.toml +0 -89
  123. secator-0.6.0/scripts/msfinstall.sh +0 -6
  124. secator-0.6.0/secator/celery.py +0 -369
  125. secator-0.6.0/secator/exporters/csv.py +0 -29
  126. secator-0.6.0/secator/exporters/table.py +0 -7
  127. secator-0.6.0/secator/exporters/txt.py +0 -24
  128. secator-0.6.0/secator/installer.py +0 -339
  129. secator-0.6.0/secator/output_types/__init__.py +0 -24
  130. secator-0.6.0/secator/report.py +0 -95
  131. secator-0.6.0/secator/runners/_base.py +0 -910
  132. secator-0.6.0/secator/runners/_helpers.py +0 -172
  133. secator-0.6.0/secator/runners/command.py +0 -670
  134. secator-0.6.0/secator/runners/task.py +0 -108
  135. secator-0.6.0/secator/serializers/json.py +0 -15
  136. secator-0.6.0/secator/serializers/regex.py +0 -17
  137. secator-0.6.0/secator/tasks/dnsx.py +0 -57
  138. secator-0.6.0/secator/tasks/h8mail.py +0 -80
  139. secator-0.6.0/secator/utils.py +0 -441
  140. secator-0.6.0/tests/performance/loadtester.py +0 -55
  141. secator-0.6.0/tests/unit/test_celery.py +0 -39
  142. secator-0.6.0/tests/unit/test_config.py +0 -71
  143. secator-0.6.0/tests/unit/test_template.py +0 -53
  144. secator-0.6.0/tests/unit/test_workflows.py +0 -75
  145. {secator-0.6.0 → secator-0.8.0}/.flake8 +0 -0
  146. {secator-0.6.0 → secator-0.8.0}/.gitignore +0 -0
  147. {secator-0.6.0 → secator-0.8.0}/CONTRIBUTING.md +0 -0
  148. {secator-0.6.0 → secator-0.8.0}/LICENSE +0 -0
  149. {secator-0.6.0 → secator-0.8.0}/SECURITY.md +0 -0
  150. {secator-0.6.0 → secator-0.8.0}/cloudbuild.yaml +0 -0
  151. {secator-0.6.0 → secator-0.8.0}/helm/.helmignore +0 -0
  152. {secator-0.6.0 → secator-0.8.0}/helm/Chart.yaml +0 -0
  153. {secator-0.6.0 → secator-0.8.0}/helm/templates/redis-service.yaml +0 -0
  154. {secator-0.6.0 → secator-0.8.0}/helm/templates/redis.yaml +0 -0
  155. {secator-0.6.0 → secator-0.8.0}/helm/templates/secator-manager.yaml +0 -0
  156. {secator-0.6.0 → secator-0.8.0}/helm/templates/secator-worker.yaml +0 -0
  157. {secator-0.6.0 → secator-0.8.0}/helm/values.yaml +0 -0
  158. {secator-0.6.0 → secator-0.8.0}/images/aliases.cast +0 -0
  159. {secator-0.6.0 → secator-0.8.0}/images/aliases.gif +0 -0
  160. {secator-0.6.0 → secator-0.8.0}/images/demo.gif +0 -0
  161. {secator-0.6.0 → secator-0.8.0}/images/demo.tap +0 -0
  162. {secator-0.6.0 → secator-0.8.0}/images/fmt.cast +0 -0
  163. {secator-0.6.0 → secator-0.8.0}/images/fmt.gif +0 -0
  164. {secator-0.6.0 → secator-0.8.0}/images/help.png +0 -0
  165. {secator-0.6.0 → secator-0.8.0}/images/input.cast +0 -0
  166. {secator-0.6.0 → secator-0.8.0}/images/input.gif +0 -0
  167. {secator-0.6.0 → secator-0.8.0}/images/pipe.cast +0 -0
  168. {secator-0.6.0 → secator-0.8.0}/images/pipe.gif +0 -0
  169. {secator-0.6.0 → secator-0.8.0}/images/short_demo.cast +0 -0
  170. {secator-0.6.0 → secator-0.8.0}/images/short_demo.gif +0 -0
  171. {secator-0.6.0 → secator-0.8.0}/scripts/download_cves.sh +0 -0
  172. {secator-0.6.0 → secator-0.8.0}/scripts/install.sh +0 -0
  173. {secator-0.6.0 → secator-0.8.0}/scripts/install_asciinema.sh +0 -0
  174. {secator-0.6.0 → secator-0.8.0}/scripts/install_go.sh +0 -0
  175. {secator-0.6.0 → secator-0.8.0}/scripts/install_ruby.sh +0 -0
  176. {secator-0.6.0 → secator-0.8.0}/scripts/msf/exploit_cve.rc +0 -0
  177. {secator-0.6.0 → secator-0.8.0}/scripts/msf/ftp_anonymous.rc +0 -0
  178. {secator-0.6.0 → secator-0.8.0}/scripts/msf/ftp_version.rc +0 -0
  179. {secator-0.6.0 → secator-0.8.0}/scripts/msf/ftp_vsftpd_234_backdoor.rc +0 -0
  180. {secator-0.6.0 → secator-0.8.0}/scripts/msf/redis.rc +0 -0
  181. {secator-0.6.0 → secator-0.8.0}/scripts/stories/STORY.md +0 -0
  182. {secator-0.6.0 → secator-0.8.0}/scripts/stories/aliases.sh +0 -0
  183. {secator-0.6.0 → secator-0.8.0}/scripts/stories/demo.sh +0 -0
  184. {secator-0.6.0 → secator-0.8.0}/scripts/stories/fmt.sh +0 -0
  185. {secator-0.6.0 → secator-0.8.0}/scripts/stories/input.sh +0 -0
  186. {secator-0.6.0 → secator-0.8.0}/scripts/stories/pipe.sh +0 -0
  187. {secator-0.6.0 → secator-0.8.0}/scripts/stories/short_demo.sh +0 -0
  188. {secator-0.6.0 → secator-0.8.0}/secator/.gitignore +0 -0
  189. {secator-0.6.0 → secator-0.8.0}/secator/__init__.py +0 -0
  190. {secator-0.6.0 → secator-0.8.0}/secator/configs/__init__.py +0 -0
  191. {secator-0.6.0 → secator-0.8.0}/secator/configs/profiles/__init__.py +0 -0
  192. {secator-0.6.0 → secator-0.8.0}/secator/configs/profiles/aggressive.yaml +0 -0
  193. {secator-0.6.0 → secator-0.8.0}/secator/configs/profiles/default.yaml +0 -0
  194. {secator-0.6.0 → secator-0.8.0}/secator/configs/profiles/stealth.yaml +0 -0
  195. {secator-0.6.0 → secator-0.8.0}/secator/configs/scans/__init__.py +0 -0
  196. {secator-0.6.0 → secator-0.8.0}/secator/configs/scans/domain.yaml +0 -0
  197. {secator-0.6.0 → secator-0.8.0}/secator/configs/scans/host.yaml +0 -0
  198. {secator-0.6.0 → secator-0.8.0}/secator/configs/scans/network.yaml +0 -0
  199. {secator-0.6.0 → secator-0.8.0}/secator/configs/scans/subdomain.yaml +0 -0
  200. {secator-0.6.0 → secator-0.8.0}/secator/configs/scans/url.yaml +0 -0
  201. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/__init__.py +0 -0
  202. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/cidr_recon.yaml +0 -0
  203. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/code_scan.yaml +0 -0
  204. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/url_crawl.yaml +0 -0
  205. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/url_fuzz.yaml +0 -0
  206. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/url_nuclei.yaml +0 -0
  207. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/user_hunt.yaml +0 -0
  208. {secator-0.6.0 → secator-0.8.0}/secator/configs/workflows/wordpress.yaml +0 -0
  209. {secator-0.6.0 → secator-0.8.0}/secator/exporters/_base.py +0 -0
  210. {secator-0.6.0 → secator-0.8.0}/secator/hooks/__init__.py +0 -0
  211. {secator-0.6.0 → secator-0.8.0}/secator/runners/__init__.py +0 -0
  212. {secator-0.6.0 → secator-0.8.0}/secator/serializers/__init__.py +0 -0
  213. {secator-0.6.0 → secator-0.8.0}/secator/tasks/__init__.py +0 -0
  214. {secator-0.6.0 → secator-0.8.0}/tests/__init__.py +0 -0
  215. {secator-0.6.0 → secator-0.8.0}/tests/fixtures/h8mail_breach.txt +0 -0
  216. {secator-0.6.0 → secator-0.8.0}/tests/fixtures/msfconsole_input.rc +0 -0
  217. {secator-0.6.0 → secator-0.8.0}/tests/fixtures/nmap_output.xml +0 -0
  218. {secator-0.6.0 → secator-0.8.0}/tests/integration/__init__.py +0 -0
  219. {secator-0.6.0 → secator-0.8.0}/tests/integration/teardown.sh +0 -0
  220. {secator-0.6.0 → secator-0.8.0}/tests/integration/wordlist_dns.txt +0 -0
  221. {secator-0.6.0 → secator-0.8.0}/tests/integration/wordpress_toolbox/Dockerfile +0 -0
  222. {secator-0.6.0 → secator-0.8.0}/tests/integration/wordpress_toolbox/Makefile +0 -0
  223. {secator-0.6.0 → secator-0.8.0}/tests/performance/__init__.py +0 -0
  224. {secator-0.6.0 → secator-0.8.0}/tests/unit/__init__.py +0 -0
  225. {secator-0.6.0 → secator-0.8.0}/tests/unit/test_scans.py +0 -0
  226. {secator-0.6.0 → secator-0.8.0}/tests/unit/test_serializers.py +0 -0
@@ -0,0 +1,36 @@
1
+ FROM alpine:latest
2
+
3
+ ENV PATH="${PATH}:/root/.local/bin"
4
+ ENV GOBIN="/root/.local/bin"
5
+ ENV TERM="dumb"
6
+ RUN apk add --no-cache \
7
+ bash \
8
+ build-base \
9
+ chromium \
10
+ curl \
11
+ gcc \
12
+ git \
13
+ go \
14
+ linux-headers \
15
+ openssl \
16
+ pipx \
17
+ proxychains-ng \
18
+ python3 \
19
+ python3-dev \
20
+ py3-pip \
21
+ ruby \
22
+ ruby-dev \
23
+ sudo \
24
+ unzip
25
+ COPY . /code
26
+ WORKDIR /code
27
+ RUN pipx install . && \
28
+ secator install addons worker && \
29
+ secator install addons gdrive && \
30
+ secator install addons gcs && \
31
+ secator install addons mongodb && \
32
+ secator install addons redis && \
33
+ secator install addons dev
34
+ RUN secator config set security.force_source_install true
35
+ RUN secator install tools
36
+ ENTRYPOINT ["secator"]
@@ -0,0 +1,38 @@
1
+ FROM archlinux:latest
2
+
3
+ ENV PATH="${PATH}:/root/.local/bin"
4
+ ENV GOBIN="/root/.local/bin"
5
+ RUN pacman -Syu --noconfirm && \
6
+ pacman -S --noconfirm \
7
+ base-devel \
8
+ bash \
9
+ chromium \
10
+ curl \
11
+ gcc \
12
+ git \
13
+ go \
14
+ jq \
15
+ make \
16
+ openssl \
17
+ proxychains \
18
+ proxychains-ng \
19
+ python \
20
+ python-pip \
21
+ python-pipx \
22
+ ruby \
23
+ rubygems \
24
+ unzip \
25
+ vim \
26
+ wget
27
+ COPY . /code
28
+ WORKDIR /code
29
+ RUN pipx install . && \
30
+ secator install addons worker && \
31
+ secator install addons gdrive && \
32
+ secator install addons gcs && \
33
+ secator install addons mongodb && \
34
+ secator install addons redis && \
35
+ secator install addons dev
36
+ RUN secator config set security.force_source_install true
37
+ RUN secator install tools
38
+ ENTRYPOINT ["secator"]
@@ -0,0 +1,41 @@
1
+ FROM debian:latest
2
+
3
+ ENV PATH="${PATH}:/root/.local/bin"
4
+ ENV GOBIN="/root/.local/bin"
5
+ RUN apt update -y && \
6
+ apt install -y \
7
+ bash \
8
+ build-essential \
9
+ chromium \
10
+ curl \
11
+ gcc \
12
+ git \
13
+ golang-go \
14
+ jq \
15
+ make \
16
+ openssl \
17
+ pipx \
18
+ python3 \
19
+ python3-pip \
20
+ python3-venv \
21
+ ruby-full \
22
+ rubygems \
23
+ proxychains \
24
+ proxychains-ng \
25
+ sudo \
26
+ unzip \
27
+ vim \
28
+ wget
29
+ COPY . /code
30
+ WORKDIR /code
31
+ RUN pipx install . && \
32
+ secator install addons worker && \
33
+ secator install addons gdrive && \
34
+ secator install addons gcs && \
35
+ secator install addons mongodb && \
36
+ secator install addons redis && \
37
+ secator install addons dev
38
+ RUN secator install langs go
39
+ RUN secator config set security.force_source_install true
40
+ RUN secator install tools
41
+ ENTRYPOINT ["secator"]
@@ -0,0 +1,40 @@
1
+ FROM kalilinux/kali-rolling:latest
2
+
3
+ ENV PATH="${PATH}:/root/.local/bin"
4
+ ENV GOBIN="/root/.local/bin"
5
+ RUN apt update -y && \
6
+ apt install -y \
7
+ bash \
8
+ build-essential \
9
+ chromium \
10
+ curl \
11
+ gcc \
12
+ git \
13
+ golang-go \
14
+ jq \
15
+ make \
16
+ openssl \
17
+ pipx \
18
+ python3 \
19
+ python3-pip \
20
+ python3-venv \
21
+ ruby-full \
22
+ rubygems \
23
+ sudo \
24
+ proxychains \
25
+ proxychains-ng \
26
+ unzip \
27
+ vim \
28
+ wget
29
+ COPY . /code
30
+ WORKDIR /code
31
+ RUN pipx install . && \
32
+ secator install addons worker && \
33
+ secator install addons gdrive && \
34
+ secator install addons gcs && \
35
+ secator install addons mongodb && \
36
+ secator install addons redis && \
37
+ secator install addons dev
38
+ RUN secator config set security.force_source_install true
39
+ RUN secator install tools
40
+ ENTRYPOINT ["secator"]
@@ -0,0 +1,42 @@
1
+ FROM sickcodes/docker-osx:latest
2
+
3
+ ENV PATH="${PATH}:/home/arch/.local/bin"
4
+ ENV GOBIN="/home/arch/.local/bin"
5
+ RUN /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
6
+ RUN echo >> /home/arch/.bashrc
7
+ RUN echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"' >> /home/arch/.bashrc
8
+ RUN sudo pacman -Syu --noconfirm && \
9
+ sudo pacman -S --noconfirm -y \
10
+ base-devel \
11
+ bash \
12
+ chromium \
13
+ curl \
14
+ gcc \
15
+ git \
16
+ go \
17
+ jq \
18
+ make \
19
+ openssl \
20
+ proxychains \
21
+ proxychains-ng \
22
+ python \
23
+ python-pip \
24
+ python-pipx \
25
+ ruby \
26
+ rubygems \
27
+ unzip \
28
+ vim \
29
+ wget
30
+ COPY . /code
31
+ WORKDIR /code
32
+ USER arch
33
+ RUN pipx install . && \
34
+ secator install addons worker && \
35
+ secator install addons gdrive && \
36
+ secator install addons gcs && \
37
+ secator install addons mongodb && \
38
+ secator install addons redis && \
39
+ secator install addons dev
40
+ RUN secator config set security.force_source_install true
41
+ RUN secator install tools
42
+ ENTRYPOINT ["secator"]
@@ -0,0 +1,40 @@
1
+ FROM ubuntu:latest
2
+
3
+ ENV PATH="${PATH}:/root/.local/bin"
4
+ ENV GOBIN="/root/.local/bin"
5
+ RUN apt update -y && \
6
+ apt install -y \
7
+ bash \
8
+ build-essential \
9
+ chromium \
10
+ curl \
11
+ gcc \
12
+ git \
13
+ golang-go \
14
+ jq \
15
+ make \
16
+ openssl \
17
+ pipx \
18
+ python3 \
19
+ python3-pip \
20
+ python3-venv \
21
+ ruby-full \
22
+ rubygems \
23
+ proxychains \
24
+ proxychains-ng \
25
+ sudo \
26
+ unzip \
27
+ vim \
28
+ wget
29
+ COPY . /code
30
+ WORKDIR /code
31
+ RUN pipx install . && \
32
+ secator install addons worker && \
33
+ secator install addons gdrive && \
34
+ secator install addons gcs && \
35
+ secator install addons mongodb && \
36
+ secator install addons redis && \
37
+ secator install addons dev
38
+ RUN secator config set security.force_source_install true
39
+ RUN secator install tools
40
+ ENTRYPOINT ["secator"]
@@ -0,0 +1,30 @@
1
+ #!/bin/bash
2
+
3
+ # Define an array of distributions
4
+ DISTROS=("alpine" "arch" "debian" "kali" "osx" "ubuntu")
5
+
6
+ # Function to build an image
7
+ build_image() {
8
+ local DISTRO=$1
9
+ local DOCKERFILE=".docker/Dockerfile.${DISTRO}"
10
+ local IMAGE_NAME="secator-${DISTRO}"
11
+
12
+ if [ -f "$DOCKERFILE" ]; then
13
+ echo "🚀 Building $IMAGE_NAME using $DOCKERFILE..."
14
+ docker build -t "$IMAGE_NAME" -f "$DOCKERFILE" . && \
15
+ echo "✅ Successfully built $IMAGE_NAME" || \
16
+ echo "❌ Failed to build $IMAGE_NAME"
17
+ else
18
+ echo "⚠️ Dockerfile $DOCKERFILE not found, skipping..."
19
+ fi
20
+ }
21
+
22
+ # Iterate through the distributions and build in parallel
23
+ for DISTRO in "${DISTROS[@]}"; do
24
+ build_image "$DISTRO" &
25
+ done
26
+
27
+ # Wait for all background jobs to finish
28
+ wait
29
+
30
+ echo "🎉 All parallel builds completed!"
@@ -0,0 +1 @@
1
+ .gitignore
@@ -1,5 +1,81 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.8.0](https://github.com/freelabz/secator/compare/v0.7.0...v0.8.0) (2025-02-06)
4
+
5
+
6
+ ### Features
7
+
8
+ * add alpine to msfinstall script ([cf921fd](https://github.com/freelabz/secator/commit/cf921fd7e7f31f6e37c14e5831f5e4d3aa087f44))
9
+ * add install support for multiple distribs ([#514](https://github.com/freelabz/secator/issues/514)) ([19d1317](https://github.com/freelabz/secator/commit/19d131760221cf6c92a6f60e29ceb236eb7e0640))
10
+ * **config:** load wordlists from URLs and config values ([#498](https://github.com/freelabz/secator/issues/498)) ([d537952](https://github.com/freelabz/secator/commit/d537952cc0065de2053479ab75927321b8032e41))
11
+ * **nmap:** lookup and correlate exploits with CVE ids ([#489](https://github.com/freelabz/secator/issues/489)) ([988edcb](https://github.com/freelabz/secator/commit/988edcbb1f5855f64a96dd5b1cc16c0c10256cc6))
12
+ * **runner:** add previous results to runner results ([#503](https://github.com/freelabz/secator/issues/503)) ([2c490fb](https://github.com/freelabz/secator/commit/2c490fb2d5d358785c22849716f78f158c975766))
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+ * **cli:** various fixes to report commands ([#507](https://github.com/freelabz/secator/issues/507)) ([ee715dd](https://github.com/freelabz/secator/commit/ee715dd9cba75a1e1a3ff12ec98ccbdae8c48675))
18
+ * **docs:** update docker-compose.yml ([#462](https://github.com/freelabz/secator/issues/462)) ([3140ee2](https://github.com/freelabz/secator/commit/3140ee25dd69aa387e3b100719a67609c099219b))
19
+ * **install:** strict healthcheck, better version parsing, install fixes ([#496](https://github.com/freelabz/secator/issues/496)) ([7d6e071](https://github.com/freelabz/secator/commit/7d6e0719dc3a83fb6ae47b2898bb63d43c03f685))
20
+ * misc bug fixes ([#511](https://github.com/freelabz/secator/issues/511)) ([16b50c4](https://github.com/freelabz/secator/commit/16b50c481da5be9b62cbb93effd9464a581e57a6))
21
+ * **msfconsole:** bug fixes ([#488](https://github.com/freelabz/secator/issues/488)) ([a54077d](https://github.com/freelabz/secator/commit/a54077d5cbcf5518f73300edf4db9a2000017ec5))
22
+ * msfinstall script ([171f868](https://github.com/freelabz/secator/commit/171f868d07c4c29444fca7487b7ea9d25148b295))
23
+ * **naabu:** change localhost to 127.0.0.1 before run ([#501](https://github.com/freelabz/secator/issues/501)) ([d0938ba](https://github.com/freelabz/secator/commit/d0938bac31de3d820e6dee53b61f9458fcd1a424))
24
+ * **naabu:** convert localhost to 127.0.0.1 and back ([#502](https://github.com/freelabz/secator/issues/502)) ([935ee65](https://github.com/freelabz/secator/commit/935ee65c13db90e8e6479d189947b48302fb5db1))
25
+ * **runner:** duplicate prints in runner due to processing of existing results ([#509](https://github.com/freelabz/secator/issues/509)) ([602cdf0](https://github.com/freelabz/secator/commit/602cdf0445a5ece0c1d50ae04ff1266705cff71b))
26
+ * syntax warnings ([#508](https://github.com/freelabz/secator/issues/508)) ([54fb8cd](https://github.com/freelabz/secator/commit/54fb8cdb3f8f8cd3a42a28ce5f8d5f45e9c50295))
27
+ * **template:** bugfix for compound group keys ([#487](https://github.com/freelabz/secator/issues/487)) ([b3e7327](https://github.com/freelabz/secator/commit/b3e73274426f09a5e940f5932ae09e7eb1f592d7))
28
+ * **tests:** update wpscan integration test ([#490](https://github.com/freelabz/secator/issues/490)) ([1493063](https://github.com/freelabz/secator/commit/1493063f236f33f6ed1ec37a1359e859f51ecd53))
29
+ * update cve circl search ([#506](https://github.com/freelabz/secator/issues/506)) ([6e10e4a](https://github.com/freelabz/secator/commit/6e10e4aa2f7013dce4941688d98bda0253588bfc))
30
+ * various fixes ([#515](https://github.com/freelabz/secator/issues/515)) ([a88c5a7](https://github.com/freelabz/secator/commit/a88c5a7e9a0ec01f4824e427474a7bd115008b5d))
31
+
32
+ ## [0.7.0](https://github.com/freelabz/secator/compare/v0.6.0...v0.7.0) (2024-11-13)
33
+
34
+
35
+ ### Features
36
+
37
+ * **`bup`:** add proxy option and progress indicator ([#444](https://github.com/freelabz/secator/issues/444)) ([d5c63c8](https://github.com/freelabz/secator/commit/d5c63c81c6465a142ce70e4800effc02d526a243))
38
+ * **`dnsx`:** add IP output type on dnsx A record ([#426](https://github.com/freelabz/secator/issues/426)) ([629439e](https://github.com/freelabz/secator/commit/629439e459a6eefd5cbe68e9fc3a317371ba7987))
39
+ * **`naabu`/`nmap`:** help for defaults and change workflow opts ([#438](https://github.com/freelabz/secator/issues/438)) ([4dd0055](https://github.com/freelabz/secator/commit/4dd00556648e691a093887d294325b00409ac04a))
40
+ * **`nmap`:** add udp scan (`-sU`) and change default scan opts ([#418](https://github.com/freelabz/secator/issues/418)) ([36c6ff3](https://github.com/freelabz/secator/commit/36c6ff3766f88ac311c1bfea86a1b5e8686dd94e))
41
+ * add url_bypass workflow based on bup ([e96b1bc](https://github.com/freelabz/secator/commit/e96b1bc9906cd2f9aa3eb5b3770594811f242abd))
42
+ * chunk dalfox input by 1 ([#443](https://github.com/freelabz/secator/issues/443)) ([26c38d7](https://github.com/freelabz/secator/commit/26c38d79e89be3d35f464e89c6973b7beadb6ac4))
43
+ * **cli:** misc bug fixes and features ([#445](https://github.com/freelabz/secator/issues/445)) ([fccfdb8](https://github.com/freelabz/secator/commit/fccfdb8ca38dcd3a2c559429a7d58d46ecac49a6))
44
+ * **hooks:** explicit output type yield in static hooks ([#439](https://github.com/freelabz/secator/issues/439)) ([2d1f8e6](https://github.com/freelabz/secator/commit/2d1f8e6b7b77210028efe2c2c56866efbd6b0152))
45
+ * **katana:** add form_fill option ([#419](https://github.com/freelabz/secator/issues/419)) ([bebddb1](https://github.com/freelabz/secator/commit/bebddb1e2fae460403adda2d84b9ae515ca977aa))
46
+ * **refactor:** improve performance, add on_interval hook, rework CLI opts ([#473](https://github.com/freelabz/secator/issues/473)) ([4a22a70](https://github.com/freelabz/secator/commit/4a22a7082fe1edf50644034cfc54b11653b47aa4))
47
+ * **runner:** add GCS driver and secator threads ([#476](https://github.com/freelabz/secator/issues/476)) ([cae475a](https://github.com/freelabz/secator/commit/cae475a2fe15742ccd80d40c28ad41aa1ffc5348))
48
+ * **runner:** add skip_if_no_inputs to workflows ([#482](https://github.com/freelabz/secator/issues/482)) ([5546b82](https://github.com/freelabz/secator/commit/5546b82756d6aad0d227072d5a3b1149c44306e8))
49
+ * **runner:** on serialized hooks ([#424](https://github.com/freelabz/secator/issues/424)) ([fde6cd7](https://github.com/freelabz/secator/commit/fde6cd7f6cba015b08b370bfd14b0aca3f4a4018))
50
+ * **runner:** rework Celery core and mix fixes ([#450](https://github.com/freelabz/secator/issues/450)) ([b72f152](https://github.com/freelabz/secator/commit/b72f15286bb29ae60568309907d4dad41d4fbacb))
51
+ * sudo prompt check test ([#432](https://github.com/freelabz/secator/issues/432)) ([f45b123](https://github.com/freelabz/secator/commit/f45b1230fd6313342ebdda5a359c1285f2d80aa8))
52
+ * sudo prompts in non-tty mode ([#431](https://github.com/freelabz/secator/issues/431)) ([0e26b55](https://github.com/freelabz/secator/commit/0e26b55c168bfd69c212bc7667ef1b97e89e6bd5))
53
+ * **tasks:** bbot integration ([#375](https://github.com/freelabz/secator/issues/375)) ([2f0dea4](https://github.com/freelabz/secator/commit/2f0dea4f4cac3370129d0adf0000c8d0efa54361))
54
+ * **tasks:** bup integration ([#398](https://github.com/freelabz/secator/issues/398)) ([ed636aa](https://github.com/freelabz/secator/commit/ed636aad7d90baa7b3b73baebc8f5be002dd796a))
55
+
56
+
57
+ ### Bug Fixes
58
+
59
+ * **cli:** proper opts override for workflows ([#436](https://github.com/freelabz/secator/issues/436)) ([1d1eaa3](https://github.com/freelabz/secator/commit/1d1eaa3283b3d5e9650b452e3865476e6a60a086))
60
+ * **dalfox:** restore input_chunk_size to default ([8f0a3b4](https://github.com/freelabz/secator/commit/8f0a3b4976e20afc2fb708483c7f8885b2b9f3d9))
61
+ * dnsx parsing output loading error ([#422](https://github.com/freelabz/secator/issues/422)) ([b9e98da](https://github.com/freelabz/secator/commit/b9e98da2b5378957076e1d8f0afd3948d5bcb5f6))
62
+ * empty CVE should pass ([#478](https://github.com/freelabz/secator/issues/478)) ([0644d68](https://github.com/freelabz/secator/commit/0644d68ccb92a4c38e8210e39f14f0850d84348d))
63
+ * gcs bug with empty paths ([549ac4c](https://github.com/freelabz/secator/commit/549ac4c8e7391a829cf1a6c5a43ad291bec1b34a))
64
+ * gcs bug with empty paths ([2d57e1a](https://github.com/freelabz/secator/commit/2d57e1ad4669587cf0abb0a59b0918cf72107d72))
65
+ * get_opt_value default value and reorg hooks ([#429](https://github.com/freelabz/secator/issues/429)) ([a44a36d](https://github.com/freelabz/secator/commit/a44a36d37f888787927ec6dfc891e86dab071aa4))
66
+ * mix bugfixes for stable release ([b743925](https://github.com/freelabz/secator/commit/b7439258c9cdadc7bd14a0a0b49e2db2d0f5b537))
67
+ * nmap defaults ([396f68a](https://github.com/freelabz/secator/commit/396f68a325a5a8f1a9379d314979dbf85a9c95c7))
68
+ * **nmap:** undefined service name ([#437](https://github.com/freelabz/secator/issues/437)) ([596f1af](https://github.com/freelabz/secator/commit/596f1aff53e9add73e1587497aee82465d212300))
69
+ * runner opts processing ([#477](https://github.com/freelabz/secator/issues/477)) ([d788e9d](https://github.com/freelabz/secator/commit/d788e9d3e508a849119d418bcc5ce371c6c53c6c))
70
+ * runner toDict() errors ([#475](https://github.com/freelabz/secator/issues/475)) ([b43c866](https://github.com/freelabz/secator/commit/b43c8669808651368536fa121be2ce79de7556aa))
71
+ * **runner:** bug with no inputs ([#483](https://github.com/freelabz/secator/issues/483)) ([4db7b46](https://github.com/freelabz/secator/commit/4db7b460a949e6b74b5837f0f1e3b5ca51b39094))
72
+ * **url_vuln:** repair bad condition ([214c8ab](https://github.com/freelabz/secator/commit/214c8abf7cad4916c8301ff056d894cc0bc26b28))
73
+
74
+
75
+ ### Documentation
76
+
77
+ * add package json ([#415](https://github.com/freelabz/secator/issues/415)) ([f9a7c2f](https://github.com/freelabz/secator/commit/f9a7c2fc5df11506cce0d81babf1f7790b80465a))
78
+
3
79
  ## [0.6.0](https://github.com/freelabz/secator/compare/v0.5.2...v0.6.0) (2024-07-25)
4
80
 
5
81
 
@@ -0,0 +1 @@
1
+ .docker/Dockerfile.alpine
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: secator
3
- Version: 0.6.0
3
+ Version: 0.8.0
4
4
  Summary: The pentester's swiss knife.
5
5
  Project-URL: Homepage, https://github.com/freelabz/secator
6
6
  Project-URL: Issues, https://github.com/freelabz/secator/issues
@@ -22,19 +22,24 @@ Requires-Python: >=3.8
22
22
  Requires-Dist: beautifulsoup4<=5
23
23
  Requires-Dist: celery<6
24
24
  Requires-Dist: cpe<2
25
+ Requires-Dist: distro<2
25
26
  Requires-Dist: dotmap<2
26
27
  Requires-Dist: free-proxy<2
27
28
  Requires-Dist: furl<3
29
+ Requires-Dist: greenlet<4
28
30
  Requires-Dist: humanize<5
29
31
  Requires-Dist: ifaddr<1
30
32
  Requires-Dist: jinja2<4
31
33
  Requires-Dist: packaging<25
34
+ Requires-Dist: psutil<7
32
35
  Requires-Dist: pydantic<3
33
36
  Requires-Dist: python-dotenv<2
34
37
  Requires-Dist: pyyaml<7
35
38
  Requires-Dist: requests<3
39
+ Requires-Dist: retry<1
36
40
  Requires-Dist: rich-click<1.7
37
41
  Requires-Dist: rich<14
42
+ Requires-Dist: tldextract<6
38
43
  Requires-Dist: typing-extensions<5
39
44
  Requires-Dist: validators<1
40
45
  Requires-Dist: xmltodict<1
@@ -44,10 +49,13 @@ Provides-Extra: dev
44
49
  Requires-Dist: asciinema-automation<1; extra == 'dev'
45
50
  Requires-Dist: coverage<8; extra == 'dev'
46
51
  Requires-Dist: flake8<8; extra == 'dev'
52
+ Requires-Dist: pytest<9; extra == 'dev'
47
53
  Requires-Dist: watchdog<3; extra == 'dev'
48
- Provides-Extra: google
49
- Requires-Dist: google-api-python-client<3; extra == 'google'
50
- Requires-Dist: gspread<7; extra == 'google'
54
+ Provides-Extra: gcs
55
+ Requires-Dist: google-cloud-storage<3; extra == 'gcs'
56
+ Provides-Extra: gdrive
57
+ Requires-Dist: google-api-python-client<3; extra == 'gdrive'
58
+ Requires-Dist: gspread<7; extra == 'gdrive'
51
59
  Provides-Extra: mongodb
52
60
  Requires-Dist: pymongo<5; extra == 'mongodb'
53
61
  Provides-Extra: redis
@@ -62,7 +70,7 @@ Requires-Dist: gevent<25; extra == 'worker'
62
70
  Description-Content-Type: text/markdown
63
71
 
64
72
  <h1 align="center">
65
- <img src="https://github.com/freelabz/secator/assets/9629314/ee203af4-e853-439a-af01-edeabfc4bf07/" width="400">
73
+ <img src="https://github.com/freelabz/secator/assets/9629314/ee203af4-e853-439a-af01-edeabfc4bf07/" width="400">
66
74
  </h1>
67
75
 
68
76
  <h4 align="center">The pentester's swiss knife.</h4>
@@ -113,32 +121,35 @@ and it is designed to improve productivity for pentesters and security researche
113
121
 
114
122
  `secator` integrates the following tools:
115
123
 
116
- | Name | Description | Category |
117
- |---------------------------------------------------------------|--------------------------------------------------------------------------------|----------------|
118
- | [httpx](https://github.com/projectdiscovery/httpx) | Fast HTTP prober. | `http` |
119
- | [cariddi](https://github.com/edoardottt/cariddi) | Fast crawler and endpoint secrets / api keys / tokens matcher. | `http/crawler` |
120
- | [gau](https://github.com/lc/gau) | Offline URL crawler (Alien Vault, The Wayback Machine, Common Crawl, URLScan). | `http/crawler` |
121
- | [gospider](https://github.com/jaeles-project/gospider) | Fast web spider written in Go. | `http/crawler` |
122
- | [katana](https://github.com/projectdiscovery/katana) | Next-generation crawling and spidering framework. | `http/crawler` |
123
- | [dirsearch](https://github.com/maurosoria/dirsearch) | Web path discovery. | `http/fuzzer` |
124
- | [feroxbuster](https://github.com/epi052/feroxbuster) | Simple, fast, recursive content discovery tool written in Rust. | `http/fuzzer` |
125
- | [ffuf](https://github.com/ffuf/ffuf) | Fast web fuzzer written in Go. | `http/fuzzer` |
126
- | [h8mail](https://github.com/khast3x/h8mail) | Email OSINT and breach hunting tool. | `osint` |
127
- | [dnsx](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit designed for running DNS queries. | `recon/dns` |
128
- | [dnsxbrute](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit designed for running DNS queries (bruteforce mode). | `recon/dns` |
129
- | [subfinder](https://github.com/projectdiscovery/subfinder) | Fast subdomain finder. | `recon/dns` |
130
- | [fping](https://fping.org/) | Find alive hosts on local networks. | `recon/ip` |
131
- | [mapcidr](https://github.com/projectdiscovery/mapcidr) | Expand CIDR ranges into IPs. | `recon/ip` |
132
- | [naabu](https://github.com/projectdiscovery/naabu) | Fast port discovery tool. | `recon/port` |
133
- | [maigret](https://github.com/soxoj/maigret) | Hunt for user accounts across many websites. | `recon/user` |
134
- | [gf](https://github.com/tomnomnom/gf) | A wrapper around grep to avoid typing common patterns. | `tagger` |
135
- | [grype](https://github.com/anchore/grype) | A vulnerability scanner for container images and filesystems. | `vuln/code` |
136
- | [dalfox](https://github.com/hahwul/dalfox) | Powerful XSS scanning tool and parameter analyzer. | `vuln/http` |
137
- | [msfconsole](https://docs.rapid7.com/metasploit/msf-overview) | CLI to access and work with the Metasploit Framework. | `vuln/http` |
138
- | [wpscan](https://github.com/wpscanteam/wpscan) | WordPress Security Scanner | `vuln/multi` |
139
- | [nmap](https://github.com/nmap/nmap) | Vulnerability scanner using NSE scripts. | `vuln/multi` |
140
- | [nuclei](https://github.com/projectdiscovery/nuclei) | Fast and customisable vulnerability scanner based on simple YAML based DSL. | `vuln/multi` |
141
- | [searchsploit](https://gitlab.com/exploit-database/exploitdb) | Exploit searcher. | `exploit/search` |
124
+ | Name | Description | Category |
125
+ |---------------------------------------------------------------|--------------------------------------------------------------------------------|-----------------|
126
+ | [httpx](https://github.com/projectdiscovery/httpx) | Fast HTTP prober. | `http` |
127
+ | [cariddi](https://github.com/edoardottt/cariddi) | Fast crawler and endpoint secrets / api keys / tokens matcher. | `http/crawler` |
128
+ | [gau](https://github.com/lc/gau) | Offline URL crawler (Alien Vault, The Wayback Machine, Common Crawl, URLScan). | `http/crawler` |
129
+ | [gospider](https://github.com/jaeles-project/gospider) | Fast web spider written in Go. | `http/crawler` |
130
+ | [katana](https://github.com/projectdiscovery/katana) | Next-generation crawling and spidering framework. | `http/crawler` |
131
+ | [dirsearch](https://github.com/maurosoria/dirsearch) | Web path discovery. | `http/fuzzer` |
132
+ | [feroxbuster](https://github.com/epi052/feroxbuster) | Simple, fast, recursive content discovery tool written in Rust. | `http/fuzzer` |
133
+ | [ffuf](https://github.com/ffuf/ffuf) | Fast web fuzzer written in Go. | `http/fuzzer` |
134
+ | [h8mail](https://github.com/khast3x/h8mail) | Email OSINT and breach hunting tool. | `osint` |
135
+ | [dnsx](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit. | `recon/dns` |
136
+ | [dnsxbrute](https://github.com/projectdiscovery/dnsx) | Fast and multi-purpose DNS toolkit (bruteforce mode). | `recon/dns` |
137
+ | [subfinder](https://github.com/projectdiscovery/subfinder) | Fast subdomain finder. | `recon/dns` |
138
+ | [fping](https://fping.org/) | Find alive hosts on local networks. | `recon/ip` |
139
+ | [mapcidr](https://github.com/projectdiscovery/mapcidr) | Expand CIDR ranges into IPs. | `recon/ip` |
140
+ | [naabu](https://github.com/projectdiscovery/naabu) | Fast port discovery tool. | `recon/port` |
141
+ | [maigret](https://github.com/soxoj/maigret) | Hunt for user accounts across many websites. | `recon/user` |
142
+ | [gf](https://github.com/tomnomnom/gf) | A wrapper around grep to avoid typing common patterns. | `tagger` |
143
+ | [grype](https://github.com/anchore/grype) | A vulnerability scanner for container images and filesystems. | `vuln/code` |
144
+ | [dalfox](https://github.com/hahwul/dalfox) | Powerful XSS scanning tool and parameter analyzer. | `vuln/http` |
145
+ | [msfconsole](https://docs.rapid7.com/metasploit/msf-overview) | CLI to access and work with the Metasploit Framework. | `vuln/http` |
146
+ | [wpscan](https://github.com/wpscanteam/wpscan) | WordPress Security Scanner | `vuln/multi` |
147
+ | [nmap](https://github.com/nmap/nmap) | Vulnerability scanner using NSE scripts. | `vuln/multi` |
148
+ | [nuclei](https://github.com/projectdiscovery/nuclei) | Fast and customisable vulnerability scanner based on simple YAML based DSL. | `vuln/multi` |
149
+ | [bbot](https://github.com/blacklanternsecurity/bbot) | Multipurpose scanner. | `multi` |
150
+ | [searchsploit](https://gitlab.com/exploit-database/exploitdb) | Exploit searcher based on ExploitDB. | `exploit/search`|
151
+ | [bup](https://github.com/laluka/bypass-url-parser) | 40X bypasser. | `http` |
152
+
142
153
 
143
154
  Feel free to request new tools to be added by opening an issue, but please
144
155
  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)).
@@ -149,7 +160,7 @@ check that the tool complies with our selection criterias before doing so. If it
149
160
  ### Installing secator
150
161
 
151
162
  <details>
152
- <summary>Pipx</summary>
163
+ <summary>Pipx</summary>
153
164
 
154
165
  ```sh
155
166
  pipx install secator
@@ -158,7 +169,7 @@ pipx install secator
158
169
  </details>
159
170
 
160
171
  <details>
161
- <summary>Pip</summary>
172
+ <summary>Pip</summary>
162
173
 
163
174
  ```sh
164
175
  pip install secator
@@ -176,7 +187,7 @@ wget -O - https://raw.githubusercontent.com/freelabz/secator/main/scripts/instal
176
187
  </details>
177
188
 
178
189
  <details>
179
- <summary>Docker</summary>
190
+ <summary>Docker</summary>
180
191
 
181
192
  ```sh
182
193
  docker run -it --rm --net=host -v ~/.secator:/root/.secator freelabz/secator --help
@@ -197,13 +208,13 @@ secator --help
197
208
  </details>
198
209
 
199
210
  <details>
200
- <summary>Docker Compose</summary>
211
+ <summary>Docker Compose</summary>
201
212
 
202
213
  ```sh
203
214
  git clone https://github.com/freelabz/secator
204
215
  cd secator
205
216
  docker-compose up -d
206
- docker-compose exec secator secator --help
217
+ docker-compose exec secator-client secator --help
207
218
  ```
208
219
 
209
220
  </details>
@@ -217,7 +228,7 @@ docker-compose exec secator secator --help
217
228
  We provide utilities to install required languages if you don't manage them externally:
218
229
 
219
230
  <details>
220
- <summary>Go</summary>
231
+ <summary>Go</summary>
221
232
 
222
233
  ```sh
223
234
  secator install langs go
@@ -226,7 +237,7 @@ secator install langs go
226
237
  </details>
227
238
 
228
239
  <details>
229
- <summary>Ruby</summary>
240
+ <summary>Ruby</summary>
230
241
 
231
242
  ```sh
232
243
  secator install langs ruby
@@ -241,7 +252,7 @@ secator install langs ruby
241
252
  We provide utilities to install or update each supported tool which should work on all systems supporting `apt`:
242
253
 
243
254
  <details>
244
- <summary>All tools</summary>
255
+ <summary>All tools</summary>
245
256
 
246
257
  ```sh
247
258
  secator install tools
@@ -250,7 +261,7 @@ secator install tools
250
261
  </details>
251
262
 
252
263
  <details>
253
- <summary>Specific tools</summary>
264
+ <summary>Specific tools</summary>
254
265
 
255
266
  ```sh
256
267
  secator install tools <TOOL_NAME>
@@ -273,7 +284,7 @@ Please make sure you are using the latest available versions for each tool befor
273
284
  There are several addons available for `secator`:
274
285
 
275
286
  <details>
276
- <summary>worker</summary>
287
+ <summary>worker</summary>
277
288
 
278
289
  Add support for Celery workers (see [Distributed runs with Celery](https://docs.freelabz.com/in-depth/distributed-runs-with-celery)).
279
290
  ```sh
@@ -284,7 +295,7 @@ secator install addons worker
284
295
 
285
296
 
286
297
  <details>
287
- <summary>google</summary>
298
+ <summary>google</summary>
288
299
 
289
300
  Add support for Google Drive exporter (`-o gdrive`).
290
301
 
@@ -295,7 +306,7 @@ secator install addons google
295
306
  </details>
296
307
 
297
308
  <details>
298
- <summary>mongodb</summary>
309
+ <summary>mongodb</summary>
299
310
 
300
311
  Add support for MongoDB driver (`-driver mongodb`).
301
312
  ```sh
@@ -305,7 +316,7 @@ secator install addons mongodb
305
316
  </details>
306
317
 
307
318
  <details>
308
- <summary>redis</summary>
319
+ <summary>redis</summary>
309
320
 
310
321
  Add support for Redis backend (Celery).
311
322
 
@@ -316,7 +327,7 @@ secator install addons redis
316
327
  </details>
317
328
 
318
329
  <details>
319
- <summary>dev</summary>
330
+ <summary>dev</summary>
320
331
 
321
332
  Add development tools like `coverage` and `flake8` required for running tests.
322
333
 
@@ -327,7 +338,7 @@ secator install addons dev
327
338
  </details>
328
339
 
329
340
  <details>
330
- <summary>trace</summary>
341
+ <summary>trace</summary>
331
342
 
332
343
  Add tracing tools like `memray` and `pyinstrument` required for tracing functions.
333
344
 
@@ -338,7 +349,7 @@ secator install addons trace
338
349
  </details>
339
350
 
340
351
  <details>
341
- <summary>build</summary>
352
+ <summary>build</summary>
342
353
 
343
354
  Add `hatch` for building and publishing the PyPI package.
344
355