secator 0.3.2__py2.py3-none-any.whl → 0.3.4__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of secator might be problematic. Click here for more details.
- secator/cli.py +1 -1
- secator/tasks/cariddi.py +1 -0
- secator/tasks/wpscan.py +1 -1
- {secator-0.3.2.dist-info → secator-0.3.4.dist-info}/METADATA +10 -2
- {secator-0.3.2.dist-info → secator-0.3.4.dist-info}/RECORD +8 -8
- {secator-0.3.2.dist-info → secator-0.3.4.dist-info}/WHEEL +1 -1
- {secator-0.3.2.dist-info → secator-0.3.4.dist-info}/entry_points.txt +0 -0
- {secator-0.3.2.dist-info → secator-0.3.4.dist-info}/licenses/LICENSE +0 -0
secator/cli.py
CHANGED
|
@@ -558,7 +558,7 @@ def health(json, debug):
|
|
|
558
558
|
console.print('\n:wrench: [bold gold3]Checking installed addons ...[/]')
|
|
559
559
|
table = get_health_table()
|
|
560
560
|
with Live(table, console=console):
|
|
561
|
-
for addon in ['google', 'mongodb', 'redis', 'dev', 'trace', 'build']:
|
|
561
|
+
for addon in ['worker', 'google', 'mongodb', 'redis', 'dev', 'trace', 'build']:
|
|
562
562
|
addon_var = ADDONS_ENABLED[addon]
|
|
563
563
|
info = {
|
|
564
564
|
'name': addon,
|
secator/tasks/cariddi.py
CHANGED
|
@@ -43,6 +43,7 @@ class cariddi(HttpCrawler):
|
|
|
43
43
|
}
|
|
44
44
|
item_loaders = []
|
|
45
45
|
install_cmd = 'go install -v github.com/edoardottt/cariddi/cmd/cariddi@latest'
|
|
46
|
+
install_github_handle = 'edoardottt/cariddi'
|
|
46
47
|
encoding = 'ansi'
|
|
47
48
|
proxychains = False
|
|
48
49
|
proxy_socks5 = True # with leaks... https://github.com/edoardottt/cariddi/issues/122
|
secator/tasks/wpscan.py
CHANGED
|
@@ -66,7 +66,7 @@ class wpscan(VulnHttp):
|
|
|
66
66
|
},
|
|
67
67
|
}
|
|
68
68
|
output_types = [Vulnerability, Tag]
|
|
69
|
-
install_cmd = 'sudo apt install build-essential && sudo gem install wpscan'
|
|
69
|
+
install_cmd = 'sudo apt install -y build-essential ruby-dev rubygems && sudo gem install wpscan'
|
|
70
70
|
proxychains = False
|
|
71
71
|
proxy_http = True
|
|
72
72
|
proxy_socks5 = False
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: secator
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
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
|
|
@@ -175,7 +175,15 @@ wget -O - https://raw.githubusercontent.com/freelabz/secator/main/scripts/instal
|
|
|
175
175
|
<summary>Docker</summary>
|
|
176
176
|
|
|
177
177
|
```sh
|
|
178
|
-
docker run -it --rm --net=host freelabz/secator --help
|
|
178
|
+
docker run -it --rm --net=host freelabz/secator -v "$HOME/.secator:/root/.secator" --help
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
The volume mount `-v` is necessary to save all `secator` reports to your host machine.
|
|
182
|
+
|
|
183
|
+
You can set up an alias to facilitate running `secator` from Docker:
|
|
184
|
+
```sh
|
|
185
|
+
alias secator="docker run -it --rm --net=host freelabz/secator -v $HOME/.secator:/root/.secator"
|
|
186
|
+
secator --help
|
|
179
187
|
```
|
|
180
188
|
|
|
181
189
|
</details>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
secator/.gitignore,sha256=da8MUc3hdb6Mo0WjZu2upn5uZMbXcBGvhdhTQ1L89HI,3093
|
|
2
2
|
secator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
3
|
secator/celery.py,sha256=QQlDblcCMfs7r2l0DhB2X8miLCtHE5MdC-XiGMK8IcA,12226
|
|
4
|
-
secator/cli.py,sha256
|
|
4
|
+
secator/cli.py,sha256=zwHB7JcWppX38IE39p4eSUUYDP5SdehYOJ-ByKNtVDw,31565
|
|
5
5
|
secator/config.py,sha256=iOeRzq7u1rvR1-Oq5v9wGxQYB613X0xKGLIcrfhEGc4,3693
|
|
6
6
|
secator/decorators.py,sha256=ZlrdUQ5kpisaNRI4-csQWwbrB4oXs6SXijramNMVqfE,10490
|
|
7
7
|
secator/definitions.py,sha256=TrEF29DLkD9niHoi41TyHx9AVbTA6VAc2Qz4YV7bbZA,7620
|
|
@@ -69,7 +69,7 @@ secator/serializers/json.py,sha256=XwuSQOBwrOAs16F5HtY-Q-rAGAxfNvlq3z-Nb2gwigE,3
|
|
|
69
69
|
secator/serializers/regex.py,sha256=hGJ_1JSOv9xPtfn_umHlsjnR_alnsDFv-UmjYCC3vwU,314
|
|
70
70
|
secator/tasks/__init__.py,sha256=Wp2QF5QS2e_BlVygsIEFbmYPTfTg7v_Vd3LQJeXTC7I,344
|
|
71
71
|
secator/tasks/_categories.py,sha256=w4vxKffTQFJEHNzi6BV5DslGpnSAlKEN0K7H6slG3Vg,9015
|
|
72
|
-
secator/tasks/cariddi.py,sha256=
|
|
72
|
+
secator/tasks/cariddi.py,sha256=GKVJ8nWtJu9fB_FhAVYA2TX3fMdKYdbMpH2IhCkj_no,3155
|
|
73
73
|
secator/tasks/dalfox.py,sha256=nrLkIbTNz_J7LgUy_3kBgzhTUbQi3RmiSJhc9HWa05c,1744
|
|
74
74
|
secator/tasks/dirsearch.py,sha256=2hJeJZJwaAl3-UAjBwlmjW1w9bxjVWxxwfcaTTxqClc,2387
|
|
75
75
|
secator/tasks/dnsx.py,sha256=H_3z87KAK-ndAQgCwS8TRWaUX_Hh54qEeuKQCS4rjBw,1771
|
|
@@ -92,9 +92,9 @@ secator/tasks/nmap.py,sha256=LS5FBo-vFxbHVK4DxF5x-O2cAvAK3zL1pROT1GddX9E,9459
|
|
|
92
92
|
secator/tasks/nuclei.py,sha256=7MlTygHd4EVz81ndrVwP5y6PZ-4j-Y8Oxuk3G3ayHPI,3343
|
|
93
93
|
secator/tasks/searchsploit.py,sha256=l0uNj5Jzax3lVMiMDxC8V3-bQ05y-FPaOhVdro1ibV4,1713
|
|
94
94
|
secator/tasks/subfinder.py,sha256=cpFyFCpVaDZ3QAjNId26ezOwntn3CA5Uk-AC2l0mo0E,1087
|
|
95
|
-
secator/tasks/wpscan.py,sha256=
|
|
96
|
-
secator-0.3.
|
|
97
|
-
secator-0.3.
|
|
98
|
-
secator-0.3.
|
|
99
|
-
secator-0.3.
|
|
100
|
-
secator-0.3.
|
|
95
|
+
secator/tasks/wpscan.py,sha256=UVWnBPOQ1RDB2wzMswWR6vc6cucYgHtuJ8pLZoqCM40,5434
|
|
96
|
+
secator-0.3.4.dist-info/METADATA,sha256=Mb3u66MRYUQoghtcSTELHLoxGJ_aIeUWz1vCcl1Mn8U,13884
|
|
97
|
+
secator-0.3.4.dist-info/WHEEL,sha256=ur4lMSgKxRve-b6cC6GOiGGrtxpSt_vCXFQqDS1-1dA,105
|
|
98
|
+
secator-0.3.4.dist-info/entry_points.txt,sha256=lPgsqqUXWgiuGSfKy-se5gHdQlAXIwS_A46NYq7Acic,44
|
|
99
|
+
secator-0.3.4.dist-info/licenses/LICENSE,sha256=19W5Jsy4WTctNkqmZIqLRV1gTDOp01S3LDj9iSgWaJ0,2867
|
|
100
|
+
secator-0.3.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|