fire-marshal-ebay 0.0.1-security.2 → 1.0.0

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 fire-marshal-ebay might be problematic. Click here for more details.

Files changed (41) hide show
  1. package/PadBuster/LICENSE +202 -0
  2. package/PadBuster/README +16 -0
  3. package/PadBuster/padBuster.pl +889 -0
  4. package/confused/.github/workflows/codeql-analysis.yml +67 -0
  5. package/confused/.github/workflows/golangci-lint.yml +28 -0
  6. package/confused/.goreleaser.yml +40 -0
  7. package/confused/CHANGELOG.md +31 -0
  8. package/confused/LICENSE +21 -0
  9. package/confused/README.md +93 -0
  10. package/confused/composer.go +105 -0
  11. package/confused/confused +0 -0
  12. package/confused/interfaces.go +11 -0
  13. package/confused/main.go +104 -0
  14. package/confused/mvn.go +120 -0
  15. package/confused/mvnparser.go +139 -0
  16. package/confused/npm.go +210 -0
  17. package/confused/packages.json +86 -0
  18. package/confused/pip.go +99 -0
  19. package/confused/util.go +11 -0
  20. package/index.js +47 -0
  21. package/package.json +9 -4
  22. package/synackAPI/Dockerfile +36 -0
  23. package/synackAPI/README.md +238 -0
  24. package/synackAPI/RHINOSPIDER/burpOOS.txt +25 -0
  25. package/synackAPI/RHINOSPIDER/burpScope.txt +1 -0
  26. package/synackAPI/RHINOSPIDER/scope.txt +1 -0
  27. package/synackAPI/bot.py +72 -0
  28. package/synackAPI/checkCerts.py +67 -0
  29. package/synackAPI/connect.py +9 -0
  30. package/synackAPI/currentTarget +24 -0
  31. package/synackAPI/getAnalytics.py +40 -0
  32. package/synackAPI/getHydra.py +46 -0
  33. package/synackAPI/getPayouts.py +11 -0
  34. package/synackAPI/getscope.py +123 -0
  35. package/synackAPI/polling.py +27 -0
  36. package/synackAPI/register.py +7 -0
  37. package/synackAPI/requirements.txt +7 -0
  38. package/synackAPI/synack.py +1046 -0
  39. package/synackAPI/synstats.py +54 -0
  40. package/synackAPI/target.py +17 -0
  41. 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)
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env python3
2
+ from synack import synack
3
+
4
+ s1 = synack()
5
+ s1.getSessionToken()
6
+ s1.getAllTargets()
7
+ s1.registerAll()
@@ -0,0 +1,7 @@
1
+ netaddr==0.8.0
2
+ pathlib2==2.3.5
3
+ pyotp==2.6.0
4
+ requests==2.25.1
5
+ selenium==3.141.0
6
+ urllib3==1.26.3
7
+ psycopg2-binary==2.9.1