fire-marshal-ebay 0.0.1-security.2 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of fire-marshal-ebay might be problematic. Click here for more details.
- package/PadBuster/LICENSE +202 -0
- package/PadBuster/README +16 -0
- package/PadBuster/padBuster.pl +889 -0
- package/confused/.github/workflows/codeql-analysis.yml +67 -0
- package/confused/.github/workflows/golangci-lint.yml +28 -0
- package/confused/.goreleaser.yml +40 -0
- package/confused/CHANGELOG.md +31 -0
- package/confused/LICENSE +21 -0
- package/confused/README.md +93 -0
- package/confused/composer.go +105 -0
- package/confused/confused +0 -0
- package/confused/interfaces.go +11 -0
- package/confused/main.go +104 -0
- package/confused/mvn.go +120 -0
- package/confused/mvnparser.go +139 -0
- package/confused/npm.go +210 -0
- package/confused/packages.json +86 -0
- package/confused/pip.go +99 -0
- package/confused/util.go +11 -0
- package/index.js +47 -0
- package/package.json +9 -4
- package/synackAPI/Dockerfile +36 -0
- package/synackAPI/README.md +238 -0
- package/synackAPI/RHINOSPIDER/burpOOS.txt +25 -0
- package/synackAPI/RHINOSPIDER/burpScope.txt +1 -0
- package/synackAPI/RHINOSPIDER/scope.txt +1 -0
- package/synackAPI/bot.py +72 -0
- package/synackAPI/checkCerts.py +67 -0
- package/synackAPI/connect.py +9 -0
- package/synackAPI/currentTarget +24 -0
- package/synackAPI/getAnalytics.py +40 -0
- package/synackAPI/getHydra.py +46 -0
- package/synackAPI/getPayouts.py +11 -0
- package/synackAPI/getscope.py +123 -0
- package/synackAPI/polling.py +27 -0
- package/synackAPI/register.py +7 -0
- package/synackAPI/requirements.txt +7 -0
- package/synackAPI/synack.py +1046 -0
- package/synackAPI/synstats.py +54 -0
- package/synackAPI/target.py +17 -0
- package/README.md +0 -5
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env python3
|
2
|
+
## This is meant to be used from the docker image and it serves as a init process for the docker environment
|
3
|
+
## Config file is set statically to /root/.synack/synack.conf as per docker setup.
|
4
|
+
## If you want to use it as standalone you can remove the option and use this script to poll every 1 hour for new targets and auto register them.
|
5
|
+
|
6
|
+
|
7
|
+
###############################################
|
8
|
+
## THIS HAS NOTHING TO DO WITH `bot.py`!!!!! ##
|
9
|
+
###############################################
|
10
|
+
|
11
|
+
from synack import synack
|
12
|
+
import time
|
13
|
+
|
14
|
+
s1 = synack()
|
15
|
+
s1.configFile = "/root/.synack/synack.conf"
|
16
|
+
s1.connectToPlatform()
|
17
|
+
s1.getSessionToken()
|
18
|
+
|
19
|
+
# Let's go headless here
|
20
|
+
s1.headless = True
|
21
|
+
# Polling time set to 1 hour
|
22
|
+
pollSleep = 3600
|
23
|
+
|
24
|
+
while True:
|
25
|
+
s1.getAllTargets()
|
26
|
+
s1.registerAll()
|
27
|
+
time.sleep(pollSleep)
|