bbot 2.6.1.6913rc0__py3-none-any.whl → 2.7.0__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 bbot might be problematic. Click here for more details.
- bbot/__init__.py +1 -1
- bbot/core/engine.py +1 -1
- bbot/core/helpers/bloom.py +6 -7
- bbot/core/helpers/dns/dns.py +0 -1
- bbot/core/helpers/dns/engine.py +0 -2
- bbot/core/helpers/files.py +2 -2
- bbot/core/helpers/git.py +17 -0
- bbot/core/helpers/misc.py +1 -0
- bbot/core/helpers/ntlm.py +0 -2
- bbot/core/helpers/regex.py +1 -1
- bbot/core/modules.py +0 -54
- bbot/defaults.yml +4 -2
- bbot/modules/base.py +11 -5
- bbot/modules/dnstlsrpt.py +0 -6
- bbot/modules/git_clone.py +46 -21
- bbot/modules/gitdumper.py +3 -13
- bbot/modules/graphql_introspection.py +5 -2
- bbot/modules/httpx.py +2 -0
- bbot/modules/iis_shortnames.py +0 -7
- bbot/modules/internal/unarchive.py +9 -3
- bbot/modules/lightfuzz/lightfuzz.py +5 -1
- bbot/modules/nuclei.py +1 -1
- bbot/modules/output/base.py +0 -5
- bbot/modules/retirejs.py +232 -0
- bbot/modules/securitytxt.py +0 -3
- bbot/modules/subdomaincenter.py +1 -16
- bbot/modules/telerik.py +6 -1
- bbot/modules/trufflehog.py +1 -1
- bbot/scanner/manager.py +7 -4
- bbot/scanner/scanner.py +1 -1
- bbot/scripts/benchmark_report.py +433 -0
- bbot/test/benchmarks/__init__.py +2 -0
- bbot/test/benchmarks/test_bloom_filter_benchmarks.py +105 -0
- bbot/test/benchmarks/test_closest_match_benchmarks.py +76 -0
- bbot/test/benchmarks/test_event_validation_benchmarks.py +438 -0
- bbot/test/benchmarks/test_excavate_benchmarks.py +291 -0
- bbot/test/benchmarks/test_ipaddress_benchmarks.py +143 -0
- bbot/test/benchmarks/test_weighted_shuffle_benchmarks.py +70 -0
- bbot/test/test_step_1/test_bbot_fastapi.py +2 -2
- bbot/test/test_step_1/test_events.py +0 -1
- bbot/test/test_step_1/test_scan.py +1 -8
- bbot/test/test_step_2/module_tests/base.py +6 -1
- bbot/test/test_step_2/module_tests/test_module_excavate.py +35 -6
- bbot/test/test_step_2/module_tests/test_module_lightfuzz.py +2 -2
- bbot/test/test_step_2/module_tests/test_module_retirejs.py +159 -0
- bbot/test/test_step_2/module_tests/test_module_telerik.py +1 -1
- {bbot-2.6.1.6913rc0.dist-info → bbot-2.7.0.dist-info}/METADATA +3 -2
- {bbot-2.6.1.6913rc0.dist-info → bbot-2.7.0.dist-info}/RECORD +51 -40
- {bbot-2.6.1.6913rc0.dist-info → bbot-2.7.0.dist-info}/LICENSE +0 -0
- {bbot-2.6.1.6913rc0.dist-info → bbot-2.7.0.dist-info}/WHEEL +0 -0
- {bbot-2.6.1.6913rc0.dist-info → bbot-2.7.0.dist-info}/entry_points.txt +0 -0
|
@@ -0,0 +1,159 @@
|
|
|
1
|
+
from .base import ModuleTestBase
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class TestRetireJS(ModuleTestBase):
|
|
5
|
+
targets = ["http://127.0.0.1:8888"]
|
|
6
|
+
modules_overrides = ["httpx", "excavate", "retirejs"]
|
|
7
|
+
|
|
8
|
+
# HTML page with vulnerable JavaScript libraries
|
|
9
|
+
vulnerable_html = """<!doctype html>
|
|
10
|
+
<html lang="en">
|
|
11
|
+
<head>
|
|
12
|
+
<meta charset="utf-8" />
|
|
13
|
+
<title>retire.js test page</title>
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<h1>retire.js test page</h1>
|
|
17
|
+
<p>This page includes JavaScript libraries for testing.</p>
|
|
18
|
+
|
|
19
|
+
<!-- jQuery 3.4.1 -->
|
|
20
|
+
<script src="/jquery-3.4.1.min.js"></script>
|
|
21
|
+
|
|
22
|
+
<!-- Lodash 4.17.11 -->
|
|
23
|
+
<script src="/lodash.min.js"></script>
|
|
24
|
+
|
|
25
|
+
<!-- Handlebars 4.0.5 -->
|
|
26
|
+
<script src="/handlebars.min.js"></script>
|
|
27
|
+
|
|
28
|
+
<script>
|
|
29
|
+
console.log('Libraries loaded');
|
|
30
|
+
</script>
|
|
31
|
+
</body>
|
|
32
|
+
</html>"""
|
|
33
|
+
|
|
34
|
+
# Sample jQuery 3.4.1 content
|
|
35
|
+
jquery_content = """/*!
|
|
36
|
+
* jQuery JavaScript Library v3.4.1
|
|
37
|
+
* https://jquery.com/
|
|
38
|
+
*/
|
|
39
|
+
(function( global, factory ) {
|
|
40
|
+
"use strict";
|
|
41
|
+
factory( global );
|
|
42
|
+
})(typeof window !== "undefined" ? window : this, function( window, noGlobal ) {
|
|
43
|
+
var jQuery = function( selector, context ) {
|
|
44
|
+
return new jQuery.fn.init( selector, context );
|
|
45
|
+
};
|
|
46
|
+
jQuery.fn = jQuery.prototype = {};
|
|
47
|
+
jQuery.fn.jquery = "3.4.1";
|
|
48
|
+
if ( typeof noGlobal === "undefined" ) {
|
|
49
|
+
window.jQuery = window.$ = jQuery;
|
|
50
|
+
}
|
|
51
|
+
return jQuery;
|
|
52
|
+
});"""
|
|
53
|
+
|
|
54
|
+
# Sample Lodash 4.17.11 content
|
|
55
|
+
lodash_content = """/**
|
|
56
|
+
* @license
|
|
57
|
+
* Lodash lodash.com/license | Underscore.js 1.8.3 underscorejs.org/LICENSE
|
|
58
|
+
*/
|
|
59
|
+
;(function(){
|
|
60
|
+
var i="4.17.11";
|
|
61
|
+
var Mn={VERSION:i};
|
|
62
|
+
if(typeof define=="function"&&define.amd)define(function(){return Mn});else if(typeof module=="object"&&module.exports)module.exports=Mn;else this._=Mn}());"""
|
|
63
|
+
|
|
64
|
+
# Sample Handlebars 4.0.5 content
|
|
65
|
+
handlebars_content = """/*!
|
|
66
|
+
handlebars v4.0.5
|
|
67
|
+
*/
|
|
68
|
+
!function(a,b){"object"==typeof exports&&"object"==typeof module?module.exports=b():"function"==typeof define&&define.amd?define([],b):"object"==typeof exports?exports.Handlebars=b():a.Handlebars=b()}(this,function(){
|
|
69
|
+
var Handlebars={};
|
|
70
|
+
Handlebars.VERSION="4.0.5";
|
|
71
|
+
return Handlebars;
|
|
72
|
+
});"""
|
|
73
|
+
|
|
74
|
+
async def setup_after_prep(self, module_test):
|
|
75
|
+
expect_args = {"uri": "/"}
|
|
76
|
+
respond_args = {"response_data": self.vulnerable_html}
|
|
77
|
+
module_test.set_expect_requests(expect_args, respond_args)
|
|
78
|
+
|
|
79
|
+
expect_args = {"uri": "/jquery-3.4.1.min.js"}
|
|
80
|
+
respond_args = {"response_data": self.jquery_content}
|
|
81
|
+
module_test.set_expect_requests(expect_args, respond_args)
|
|
82
|
+
|
|
83
|
+
expect_args = {"uri": "/lodash.min.js"}
|
|
84
|
+
respond_args = {"response_data": self.lodash_content}
|
|
85
|
+
module_test.set_expect_requests(expect_args, respond_args)
|
|
86
|
+
|
|
87
|
+
expect_args = {"uri": "/handlebars.min.js"}
|
|
88
|
+
respond_args = {"response_data": self.handlebars_content}
|
|
89
|
+
module_test.set_expect_requests(expect_args, respond_args)
|
|
90
|
+
|
|
91
|
+
def check(self, module_test, events):
|
|
92
|
+
# Check that excavate found the JavaScript URLs
|
|
93
|
+
url_unverified_events = [e for e in events if e.type == "URL_UNVERIFIED"]
|
|
94
|
+
js_url_events = [e for e in url_unverified_events if "extension-js" in e.tags]
|
|
95
|
+
|
|
96
|
+
# We should have found the JavaScript URLs
|
|
97
|
+
assert len(url_unverified_events) > 0, "No URL_UNVERIFIED events found - excavate may not be working"
|
|
98
|
+
assert len(js_url_events) >= 3, f"Expected at least 3 JavaScript URLs, found {len(js_url_events)}"
|
|
99
|
+
|
|
100
|
+
# Check for FINDING events generated by retirejs
|
|
101
|
+
finding_events = [e for e in events if e.type == "FINDING"]
|
|
102
|
+
retirejs_findings = [
|
|
103
|
+
e
|
|
104
|
+
for e in finding_events
|
|
105
|
+
if "vulnerable javascript library detected:" in e.data.get("description", "").lower()
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
# We should have at least some findings from our vulnerable libraries
|
|
109
|
+
assert len(retirejs_findings) > 0, (
|
|
110
|
+
f"Expected retirejs to find vulnerabilities, but got {len(retirejs_findings)} findings"
|
|
111
|
+
)
|
|
112
|
+
|
|
113
|
+
# Check for specific expected vulnerability descriptions
|
|
114
|
+
descriptions = [finding.data.get("description", "") for finding in retirejs_findings]
|
|
115
|
+
all_descriptions = "\n".join(descriptions)
|
|
116
|
+
|
|
117
|
+
# Look for specific vulnerabilities we expect to find
|
|
118
|
+
expected_handlebars_vuln = "Vulnerable JavaScript library detected: handlebars v4.0.5 Severity: HIGH Summary: Regular Expression Denial of Service in Handlebars JavaScript URL: http://127.0.0.1:8888/handlebars.min.js CVE(s): CVE-2019-20922 Affected versions: [4.0.0 to 4.4.5)"
|
|
119
|
+
expected_jquery_vuln = "Vulnerable JavaScript library detected: jquery v3.4.1 Severity: MEDIUM Summary: Regex in its jQuery.htmlPrefilter sometimes may introduce XSS JavaScript URL: http://127.0.0.1:8888/jquery-3.4.1.min.js CVE(s): CVE-2020-11022 Affected versions: [1.2.0 to 3.5.0)"
|
|
120
|
+
|
|
121
|
+
# Verify at least one of the expected vulnerabilities is found
|
|
122
|
+
handlebars_found = expected_handlebars_vuln in all_descriptions
|
|
123
|
+
jquery_found = expected_jquery_vuln in all_descriptions
|
|
124
|
+
|
|
125
|
+
assert handlebars_found and jquery_found, (
|
|
126
|
+
f"Expected to find specific vulnerabilities but didn't find them. Found descriptions:\n{all_descriptions}"
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
# Basic validation of findings structure
|
|
130
|
+
for finding in retirejs_findings:
|
|
131
|
+
assert "description" in finding.data, "Finding should have description"
|
|
132
|
+
assert "url" in finding.data, "Finding should have url"
|
|
133
|
+
assert finding.parent.type == "URL_UNVERIFIED", "Parent should be URL_UNVERIFIED"
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
class TestRetireJSNoExcavate(ModuleTestBase):
|
|
137
|
+
targets = ["http://127.0.0.1:8888"]
|
|
138
|
+
modules_overrides = ["httpx", "retirejs"]
|
|
139
|
+
force_start = True # Allow scan to continue even if modules fail setup
|
|
140
|
+
config_overrides = {
|
|
141
|
+
"excavate": False,
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
def check(self, module_test, events):
|
|
145
|
+
# When excavate is disabled, retirejs should fail setup but scan should still run
|
|
146
|
+
retirejs_module = module_test.scan.modules.get("retirejs")
|
|
147
|
+
|
|
148
|
+
if retirejs_module:
|
|
149
|
+
# Check that the module exists but setup failed
|
|
150
|
+
setup_status = getattr(retirejs_module, "_setup_status", None)
|
|
151
|
+
if setup_status is not None:
|
|
152
|
+
success, error_msg = setup_status
|
|
153
|
+
assert success is False, "retirejs setup should have failed without excavate"
|
|
154
|
+
expected_error = "retirejs will not function without excavate enabled"
|
|
155
|
+
assert error_msg == expected_error, f"Expected error message '{expected_error}', but got '{error_msg}'"
|
|
156
|
+
|
|
157
|
+
# No retirejs findings should be generated since setup failed
|
|
158
|
+
retirejs_findings = [e for e in events if e.type == "FINDING" and getattr(e, "module", None) == "retirejs"]
|
|
159
|
+
assert len(retirejs_findings) == 0, "retirejs should not generate findings when setup fails"
|
|
@@ -11,7 +11,7 @@ class TestTelerik(ModuleTestBase):
|
|
|
11
11
|
# Simulate Telerik.Web.UI.WebResource.axd?type=rau detection
|
|
12
12
|
expect_args = {"method": "GET", "uri": "/Telerik.Web.UI.WebResource.axd", "query_string": "type=rau"}
|
|
13
13
|
respond_args = {
|
|
14
|
-
"response_data": '{ "message" : "RadAsyncUpload handler is registered
|
|
14
|
+
"response_data": '{ "message" : "RadAsyncUpload handler is registered succesfully, however, it may not be accessed directly." }'
|
|
15
15
|
}
|
|
16
16
|
module_test.set_expect_requests(expect_args=expect_args, respond_args=respond_args)
|
|
17
17
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: bbot
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.7.0
|
|
4
4
|
Summary: OSINT automation for hackers.
|
|
5
5
|
License: GPL-3.0
|
|
6
6
|
Keywords: python,cli,automation,osint,threat-intel,intelligence,neo4j,scanner,python-library,hacking,recursion,pentesting,recon,command-line-tool,bugbounty,subdomains,security-tools,subdomain-scanner,osint-framework,attack-surface,subdomain-enumeration,osint-tool
|
|
@@ -34,7 +34,7 @@ Requires-Dist: puremagic (>=1.28,<2.0)
|
|
|
34
34
|
Requires-Dist: pycryptodome (>=3.17,<4.0)
|
|
35
35
|
Requires-Dist: pydantic (>=2.9.2,<3.0.0)
|
|
36
36
|
Requires-Dist: pyjwt (>=2.7.0,<3.0.0)
|
|
37
|
-
Requires-Dist: pyzmq (>=26.0.3,<
|
|
37
|
+
Requires-Dist: pyzmq (>=26.0.3,<28.0.0)
|
|
38
38
|
Requires-Dist: radixtarget (>=3.0.13,<4.0.0)
|
|
39
39
|
Requires-Dist: regex (>=2024.4.16,<2025.0.0)
|
|
40
40
|
Requires-Dist: setproctitle (>=1.3.3,<2.0.0)
|
|
@@ -45,6 +45,7 @@ Requires-Dist: unidecode (>=1.3.8,<2.0.0)
|
|
|
45
45
|
Requires-Dist: websockets (>=14.0.0,<16.0.0)
|
|
46
46
|
Requires-Dist: wordninja (>=2.0.0,<3.0.0)
|
|
47
47
|
Requires-Dist: xmltojson (>=2.0.2,<3.0.0)
|
|
48
|
+
Requires-Dist: xxhash (>=3.5.0,<4.0.0)
|
|
48
49
|
Requires-Dist: yara-python (>=4.5.1,<5.0.0)
|
|
49
50
|
Project-URL: Documentation, https://www.blacklanternsecurity.com/bbot/
|
|
50
51
|
Project-URL: Discord, https://discord.com/invite/PZqkgxu5SA
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
bbot/__init__.py,sha256=
|
|
1
|
+
bbot/__init__.py,sha256=4_6cRDi5DslQcijv_exlf9r1DXv-x-vczmP3vFYcNUI,156
|
|
2
2
|
bbot/cli.py,sha256=1QJbANVw9Q3GFM92H2QRV2ds5756ulm08CDZwzwPpeI,11888
|
|
3
3
|
bbot/core/__init__.py,sha256=l255GJE_DvUnWvrRb0J5lG-iMztJ8zVvoweDOfegGtI,46
|
|
4
4
|
bbot/core/config/__init__.py,sha256=zYNw2Me6tsEr8hOOkLb4BQ97GB7Kis2k--G81S8vofU,342
|
|
5
5
|
bbot/core/config/files.py,sha256=zANvrTRLJQIOWSNkxd9MpWmf9cQFr0gRZLUxeIbTwQc,1412
|
|
6
6
|
bbot/core/config/logger.py,sha256=0820l89sQzo_TPmsgRzJhUwuAMzlRDMy1vq6H3Mu2KY,10226
|
|
7
7
|
bbot/core/core.py,sha256=V0G3dKPN5xCbXOoFeBRkh-BZb6A3kSNA060De01LiTU,7065
|
|
8
|
-
bbot/core/engine.py,sha256=
|
|
8
|
+
bbot/core/engine.py,sha256=DxlbxUWU1x20DTIsVsYXWuR5Z8eYJRmP-SOLyvO4Eek,29362
|
|
9
9
|
bbot/core/event/__init__.py,sha256=pRi5lC9YBKGxx6ZgrnE4shqKYYdqKR1Ps6tDw2WKGOw,113
|
|
10
10
|
bbot/core/event/base.py,sha256=1jUgd3I3TDITKoobh92ir_tIm38EN1ZbhoaX1W9fKts,67125
|
|
11
11
|
bbot/core/event/helpers.py,sha256=MohOCVBjkn_K1p4Ipgx-MKliZtV6l4NJPq3YgagkvSM,6507
|
|
12
12
|
bbot/core/flags.py,sha256=Ltvm8Bc4D65I55HuU5bzyjO1R3yMDNpVmreGU83ZBXE,1266
|
|
13
13
|
bbot/core/helpers/__init__.py,sha256=cpOGLKIgA3vdHYqsOtx63BFO_qbtwCmez2amFPu6YTs,111
|
|
14
14
|
bbot/core/helpers/async_helpers.py,sha256=bVHEUIOZo8iCmuovLYb3oNLPdLFUoEyc6wZIIvtELVs,4399
|
|
15
|
-
bbot/core/helpers/bloom.py,sha256=
|
|
15
|
+
bbot/core/helpers/bloom.py,sha256=fTMdgnrJPC9fzNXwBg1GYbz1P05YPhjxy9aUg6-z3a4,2605
|
|
16
16
|
bbot/core/helpers/cache.py,sha256=1aMr3HVD45cDtHEG5xlznDUCywRgO9oRFidscrs_5sA,1537
|
|
17
17
|
bbot/core/helpers/command.py,sha256=ZiLp71iEEcnnHLkvyD_TVeBKl9Uz9PGpTcpl9EHLCgQ,12938
|
|
18
18
|
bbot/core/helpers/depsinstaller/__init__.py,sha256=C2jF_ymSPIO68F649csYQql37ppPfUjFc8eq8LhgDkQ,66
|
|
@@ -21,20 +21,21 @@ bbot/core/helpers/depsinstaller/sudo_askpass.py,sha256=yGa2OQv30RO75QkMuG1iruKqb
|
|
|
21
21
|
bbot/core/helpers/diff.py,sha256=X9MnHfz3IjWhD2grYTHzVPYoiWI9ZqjJul2Bp_BRGcE,10841
|
|
22
22
|
bbot/core/helpers/dns/__init__.py,sha256=SboBeh4o81Xd4mAKhV10QzoRPDH4g28xC5PZVqVmJ28,35
|
|
23
23
|
bbot/core/helpers/dns/brute.py,sha256=ajobmbCYGo7yrbBamc1recV7UeHxzzaebcnFUoUde2Q,7143
|
|
24
|
-
bbot/core/helpers/dns/dns.py,sha256=
|
|
25
|
-
bbot/core/helpers/dns/engine.py,sha256=
|
|
24
|
+
bbot/core/helpers/dns/dns.py,sha256=IL4Up4EnklA9nfHWoGMyOfh5ypnF_1OYETAO6oPpsaQ,8308
|
|
25
|
+
bbot/core/helpers/dns/engine.py,sha256=0VP53V8QDOlNZgZk2LPGetDQCuJxqFtAsWWw-jBqwPw,28704
|
|
26
26
|
bbot/core/helpers/dns/helpers.py,sha256=aQroIuz5TxrCZ4zoplOaqLj3ZNgOgDRKn0xM8GKz2dA,8505
|
|
27
27
|
bbot/core/helpers/dns/mock.py,sha256=FCPrihu6O4kun38IH70RfktsXIKKfe0Qx5PMzZVUdsY,2588
|
|
28
|
-
bbot/core/helpers/files.py,sha256=
|
|
28
|
+
bbot/core/helpers/files.py,sha256=vWxx5AfH8khboawBdUi-KYvbjpybSMLGZpixylitGMQ,5811
|
|
29
|
+
bbot/core/helpers/git.py,sha256=q2y25H9wow1-R7TMT4BBSVFzJpBzfGblAMxy9hGOCvw,757
|
|
29
30
|
bbot/core/helpers/helper.py,sha256=u-q_Ka9pY1atvC-FChxYpURM7b3_0gaCNIHSG__Wi74,8538
|
|
30
31
|
bbot/core/helpers/interactsh.py,sha256=VBYYH6-rWBofRsgemndK6iZNmyifOps8vgQOw2mac4k,12624
|
|
31
32
|
bbot/core/helpers/libmagic.py,sha256=QMHyxjgDLb2jyjBvK1MQ-xt6WkGXhKcHu9ZP1li-sik,3460
|
|
32
|
-
bbot/core/helpers/misc.py,sha256=
|
|
33
|
+
bbot/core/helpers/misc.py,sha256=9O0y76FZi4E8Frbip086Rip3dUS52y_qf03iwcv-5aM,89067
|
|
33
34
|
bbot/core/helpers/names_generator.py,sha256=zmo4MyuOnAYjiUDiORhq9T9bHmA_gW72Y2kHMAqVENU,10594
|
|
34
|
-
bbot/core/helpers/ntlm.py,sha256=
|
|
35
|
+
bbot/core/helpers/ntlm.py,sha256=BspNjNyKiWEqdqG3gYzYFyLsnCuzWyLOsguv1yBWLs0,2516
|
|
35
36
|
bbot/core/helpers/process.py,sha256=00uRpLMFi3Pt3uT8qXwAIhsXdoa7h-ifoXh0sGYgwqs,1702
|
|
36
37
|
bbot/core/helpers/ratelimiter.py,sha256=fQp5mKfqfCkDkZzgntDu4NWlRsWSMCto0V8vaV8-34k,2115
|
|
37
|
-
bbot/core/helpers/regex.py,sha256=
|
|
38
|
+
bbot/core/helpers/regex.py,sha256=iJMK51U1paJSzJ4_AufQqvNFoJ7JWvFBysnWEL5Jw4k,4572
|
|
38
39
|
bbot/core/helpers/regexes.py,sha256=8bPyUKQJZ6Oor5wuJ4n4VJ0R8zPDrOAIdZ4GRU57OMA,8771
|
|
39
40
|
bbot/core/helpers/url.py,sha256=eunp4PNNulhitjDpl9tXJkgbTmLgGXmPaGAEaExRqTY,6352
|
|
40
41
|
bbot/core/helpers/validators.py,sha256=-WBYvjlwi5SsVtn_LankKGI8vaBza2NqvM1lGbVmiN4,9711
|
|
@@ -46,11 +47,11 @@ bbot/core/helpers/web/ssl_context.py,sha256=aWVgl-d0HoE8B4EBKNxaa5UAzQmx79DjDByf
|
|
|
46
47
|
bbot/core/helpers/web/web.py,sha256=q9X6JNufbZzRijzsc6bXkxH0ntly7rDr-uptscSKxRo,24042
|
|
47
48
|
bbot/core/helpers/wordcloud.py,sha256=QM8Z1N01_hXrRFKQjvRL-IzOOC7ZMKjuSBID3u77Sxg,19809
|
|
48
49
|
bbot/core/helpers/yara_helper.py,sha256=ypwC_H_ovJp9BpOwqgPkIdZEwqWfvqrRdKlwzBLfm8Q,1592
|
|
49
|
-
bbot/core/modules.py,sha256=
|
|
50
|
+
bbot/core/modules.py,sha256=_h-TFaMw7NmpEO1orJ9kVgeVbATbMxo7zlGoa8p9Cs8,29354
|
|
50
51
|
bbot/core/multiprocess.py,sha256=ocQHanskJ09gHwe7RZmwNdZyCOQyeyUoIHCtLbtvXUk,1771
|
|
51
52
|
bbot/core/shared_deps.py,sha256=NeJmyakKxQQjN-H3rYGwGuHeVxDiVM_KnDfeVEeIbf4,9498
|
|
52
53
|
bbot/db/sql/models.py,sha256=SrUdDOBCICzXJBY29p0VvILhMQ1JCuh725bqvIYogX0,4884
|
|
53
|
-
bbot/defaults.yml,sha256
|
|
54
|
+
bbot/defaults.yml,sha256=-RAGZs-0wXTHKxCbU2i7XyX8AGZx2woN0_ID5P6GtFI,7961
|
|
54
55
|
bbot/errors.py,sha256=xwQcD26nU9oc7-o0kv5jmEDTInmi8_W8eKAgQZZxdVM,953
|
|
55
56
|
bbot/logger.py,sha256=wE-532v5FyKuSSoTdyW1xSfaOnLZB1axAJnB-uW2xrI,2745
|
|
56
57
|
bbot/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -64,7 +65,7 @@ bbot/modules/baddns.py,sha256=vSWWBiPfVowAg1yrBAx0rm8ViSh1O3VX7nI9Pn2Z5mo,6694
|
|
|
64
65
|
bbot/modules/baddns_direct.py,sha256=G5WTKQ-jKJnSLijsOjyQKoR2Sx49fvACBvAC-b_yPck,3820
|
|
65
66
|
bbot/modules/baddns_zone.py,sha256=8s2vIbU2MsLW6w12bDyw8FWBfdDRn2A2gWoMFEX4gPw,1036
|
|
66
67
|
bbot/modules/badsecrets.py,sha256=2M515_nmDg24WTDqM01w-2DNN2H8BewvqnG_8hG6n3o,5110
|
|
67
|
-
bbot/modules/base.py,sha256=
|
|
68
|
+
bbot/modules/base.py,sha256=uatsSs15fcaawbu7JTfQiY8WhkKQ-6WGGG41hIT2YeQ,78811
|
|
68
69
|
bbot/modules/bevigil.py,sha256=0VLIxmeXRUI2-EoR6IzuHJMcX8KCHNNta-WYa3gVlDg,2862
|
|
69
70
|
bbot/modules/bucket_amazon.py,sha256=mwjYeEAcdfOpjbOa1sD8U9KBMMVY_c8FoHjSGR9GQbg,730
|
|
70
71
|
bbot/modules/bucket_azure.py,sha256=Jaa9XEL7w7VM0a-WAp05MOGdP5nt7hMpLzBsPq74_IM,1284
|
|
@@ -91,7 +92,7 @@ bbot/modules/dnsbrute_mutations.py,sha256=EbAZ-ZOqk98OAMacc8PuX_zx6eXyn6gJxgFuZ8
|
|
|
91
92
|
bbot/modules/dnscaa.py,sha256=pyaLqHrdsVhqtd1JBZVjKKcuYT_ywUbFYkrnfXcGD5s,5014
|
|
92
93
|
bbot/modules/dnscommonsrv.py,sha256=wrCRTlqVuxFIScWH0Cb0UQAVk0TWxgVc5fo5awl3R24,1568
|
|
93
94
|
bbot/modules/dnsdumpster.py,sha256=bqUqyvRJVtoTXbDxTZ-kgPNq4dCE9xv_msBIn_Nj5IM,3251
|
|
94
|
-
bbot/modules/dnstlsrpt.py,sha256=
|
|
95
|
+
bbot/modules/dnstlsrpt.py,sha256=v8V72RBsawmDPrMrTcKXEyoFt9bgbfm-cpoPYgKEKLQ,6238
|
|
95
96
|
bbot/modules/docker_pull.py,sha256=zNQcQdS-JWM2-TbQ_iyjeGA9CKcpuXdeO5ucoJgzZNY,9189
|
|
96
97
|
bbot/modules/dockerhub.py,sha256=JQkujjqvQRzQuvHjQ7JbFs_VlJj8dLRPRObAkBgUQhc,3493
|
|
97
98
|
bbot/modules/dotnetnuke.py,sha256=zipcHyNYr2FEecStb1Yrm938ps01RvHV8NnyqAvnGGc,10537
|
|
@@ -104,8 +105,8 @@ bbot/modules/fingerprintx.py,sha256=rdlR9d64AntAhbS_eJzh8bZCeLPTJPSKdkdKdhH_qAo,
|
|
|
104
105
|
bbot/modules/fullhunt.py,sha256=2ntu1yBh51N4e_l-kpXc1UBoVVcxEE2JPkyaMYCuUb4,1336
|
|
105
106
|
bbot/modules/generic_ssrf.py,sha256=KFdcHpUV9-Z7oN7emzbirimsNc2xZ_1IFqnsfIkEbcM,9196
|
|
106
107
|
bbot/modules/git.py,sha256=zmHeI0bn181T1P8C55HSebkdVGLTpzGxPc-LRqiHrbc,1723
|
|
107
|
-
bbot/modules/git_clone.py,sha256=
|
|
108
|
-
bbot/modules/gitdumper.py,sha256=
|
|
108
|
+
bbot/modules/git_clone.py,sha256=SwtCnOpVqEgSMfqaN54NUpS2jYZWt4Fk8Y_TqUIO724,3764
|
|
109
|
+
bbot/modules/gitdumper.py,sha256=mzlEJuWLlZIWXj-0V5kC8qTVLEvVtbrPColCXQGFEoQ,11588
|
|
109
110
|
bbot/modules/github_codesearch.py,sha256=a-r2vE9N9WyBpFUiKCsg0TK4Qn7DaEGyVRTUKzkDLWA,3641
|
|
110
111
|
bbot/modules/github_org.py,sha256=WM18vJCHuOHJJ5rPzQzQ3Pmp7XPPuaMeVgNfW-FlO0k,8938
|
|
111
112
|
bbot/modules/github_usersearch.py,sha256=G8knkQBJsn7EKcMhcEaFPiB_Y5S96e2VaseBubsqOyk,3407
|
|
@@ -113,13 +114,13 @@ bbot/modules/github_workflows.py,sha256=xKntAFDeGuE4MqbEmhJyYXKbzoSh9tWYlHNlnF37
|
|
|
113
114
|
bbot/modules/gitlab.py,sha256=9oWWpBijeHCjuFBfWW4HvNqt7bvJvrBgBjaaz_UPPnE,5964
|
|
114
115
|
bbot/modules/google_playstore.py,sha256=N4QjzQag_bgDXfX17rytBiiWA-SQtYI2N0J_ZNEOdv0,3701
|
|
115
116
|
bbot/modules/gowitness.py,sha256=hMhCz4O1sDJCzCzRIcmu0uNDgDDf9JzkFBwL1WuUum0,13144
|
|
116
|
-
bbot/modules/graphql_introspection.py,sha256
|
|
117
|
+
bbot/modules/graphql_introspection.py,sha256=Y-MqXrN6qmXTv2T6t7hJ-SU3R2guZQRWkrrCLC56bAc,4239
|
|
117
118
|
bbot/modules/hackertarget.py,sha256=IsKs9PtxUHdLJKZydlRdW_loBE2KphQYi3lKDAd4odc,1029
|
|
118
119
|
bbot/modules/host_header.py,sha256=uDjwidMdeNPMRfzQ2YW4REEGsZqnGOZHbOS6GgdNd9s,7686
|
|
119
|
-
bbot/modules/httpx.py,sha256=
|
|
120
|
+
bbot/modules/httpx.py,sha256=tlQ6NKw8FJ6rGaNI1BnwKqjxZFn1MZeItGZgNab_Ydo,8177
|
|
120
121
|
bbot/modules/hunt.py,sha256=zt-RKBiOlAKozHA-ZvuPeSOISEu7rIo2aHXQWEsILhw,6607
|
|
121
122
|
bbot/modules/hunterio.py,sha256=dL8IUecJQzNJgvtHArQ1Lz574MbRTF7GbLxp6lLcs0o,2644
|
|
122
|
-
bbot/modules/iis_shortnames.py,sha256=
|
|
123
|
+
bbot/modules/iis_shortnames.py,sha256=7nEkfBP4CAEiat3C_575INoZSmm6wJ2sZqn7hMSlECg,15970
|
|
123
124
|
bbot/modules/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
124
125
|
bbot/modules/internal/aggregate.py,sha256=HnnfTX2GYsOz8IFtfrRX1uXV6rvFx4uG9lmYJF2sdog,419
|
|
125
126
|
bbot/modules/internal/base.py,sha256=BXO4Hc7XKaAOaLzolF3krJX1KibPxtek2GTQUgnCHk0,387
|
|
@@ -127,13 +128,13 @@ bbot/modules/internal/cloudcheck.py,sha256=IYVetq8YE--yio5DhxukjgshJwZ3EohIu6ZVw
|
|
|
127
128
|
bbot/modules/internal/dnsresolve.py,sha256=1fwWChIGpSEIIkswueiIhEwIahQ7YngZ-njFK-RIsfU,15679
|
|
128
129
|
bbot/modules/internal/excavate.py,sha256=L8tGdfdvxrvfskC1Ms9UtSy-gxudnQcW7Iv5tHNAbW4,63728
|
|
129
130
|
bbot/modules/internal/speculate.py,sha256=ua35Da-f0-fnK0oXtx4DeGJAT19bfqnmLfetSUfJnIk,9262
|
|
130
|
-
bbot/modules/internal/unarchive.py,sha256=
|
|
131
|
+
bbot/modules/internal/unarchive.py,sha256=tORk083jgbJAHdNLSLHlR1YtP0TrBBrTPWF67bnW1wk,4041
|
|
131
132
|
bbot/modules/ip2location.py,sha256=yGivX9fzvwvLpnqmYCP2a8SPjTarzrZxfRluog-nkME,2628
|
|
132
133
|
bbot/modules/ipneighbor.py,sha256=b_0IhorihFLtXJZEz57EGXjXW30gIOEzzVgz2GFvM3A,1591
|
|
133
134
|
bbot/modules/ipstack.py,sha256=j_S8WMNqQuSQgBT7AX4tO70fgbWuRYrpsS3tVsu_hn4,2200
|
|
134
135
|
bbot/modules/jadx.py,sha256=8ncbK5i3B6i253qJ5tuD3-cPl4S8qqRvnTVINFTjtvQ,3084
|
|
135
136
|
bbot/modules/leakix.py,sha256=4sKghkId5cX_eVqTSFsqdNzX5JmUemr-U7gs8PfKVVA,1561
|
|
136
|
-
bbot/modules/lightfuzz/lightfuzz.py,sha256=
|
|
137
|
+
bbot/modules/lightfuzz/lightfuzz.py,sha256=GN7nV_eBlY9_WpQoMpHJ6iDSAph1GFzle_O4s7v3sjc,9211
|
|
137
138
|
bbot/modules/lightfuzz/submodules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
138
139
|
bbot/modules/lightfuzz/submodules/base.py,sha256=PvMEoEqrgAmp63JufaPe9GhOn7ay3oBvvZCuFIzuwaI,12619
|
|
139
140
|
bbot/modules/lightfuzz/submodules/cmdi.py,sha256=-9pL7Yh7VVCObxuS6Qu2cKEJBstfk0oXIkMyntg8xDk,5043
|
|
@@ -147,12 +148,12 @@ bbot/modules/medusa.py,sha256=44psluRg9VFo6WNLKlnTtH66afqhrOF0STBbLhFkHCE,8859
|
|
|
147
148
|
bbot/modules/myssl.py,sha256=DoMF7o6MxIrcglCrC-W3nM-GPcyJRM4PlGdKfnOlIvs,942
|
|
148
149
|
bbot/modules/newsletters.py,sha256=1Q4JjShPsxHJ-by2CbGfCvEt80blUGPX0hxQIzB_a9M,2630
|
|
149
150
|
bbot/modules/ntlm.py,sha256=EGmb4k3YC_ZuHIU3mGUZ4yaMjE35wVQQSv8HwTsQJzY,4391
|
|
150
|
-
bbot/modules/nuclei.py,sha256=
|
|
151
|
+
bbot/modules/nuclei.py,sha256=_JcCfXdgANn7zU_7TW-RWBeZDIuZBA_bBDOYtPuj-yk,17999
|
|
151
152
|
bbot/modules/oauth.py,sha256=s-Q6PYJl1OLncGgHzCV0QAzbkewT5zzKCRaa8GidBqc,6720
|
|
152
153
|
bbot/modules/otx.py,sha256=GYi5GFLKlKuRHPYMqtq42bSulerkSpAWHM6ex5eK7ww,913
|
|
153
154
|
bbot/modules/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
155
|
bbot/modules/output/asset_inventory.py,sha256=nOIclasA3dGWfgzkgucQSivvXHQquEq312Y0Z6In49I,15479
|
|
155
|
-
bbot/modules/output/base.py,sha256=
|
|
156
|
+
bbot/modules/output/base.py,sha256=9qtuU3dqpyw5r9txGwLc3nuK5Cg9NDD3Ol80JKPxyKI,3530
|
|
156
157
|
bbot/modules/output/csv.py,sha256=Nh8zcapgNAqbUKm-Jjb5kVL-INXwkn13oZ_Id-BEwUk,2865
|
|
157
158
|
bbot/modules/output/discord.py,sha256=-6Dny6ZFG9W1OV54nqyamRZQk7TPzxw05nrSlb2Lwqw,730
|
|
158
159
|
bbot/modules/output/emails.py,sha256=mzZideMCNfB8-naQANO5g8Y9HdgviAihRsdY_xPQjbQ,1095
|
|
@@ -187,9 +188,10 @@ bbot/modules/reflected_parameters.py,sha256=RjS-4C-XC9U-jC9J7AYNqwn6I-O2y3LvTRhB
|
|
|
187
188
|
bbot/modules/report/affiliates.py,sha256=vvus8LylqOfP-lfGid0z4FS6MwOpNuRTcSJ9aSnybp4,1713
|
|
188
189
|
bbot/modules/report/asn.py,sha256=D0jQkcZe_gEbmSokgSisYw6QolVJI9l71ksSMlOVTfo,9687
|
|
189
190
|
bbot/modules/report/base.py,sha256=hOtZF41snTSlHZmzZndmOjfmtdKPy2-tfFBAxxbHcao,105
|
|
191
|
+
bbot/modules/retirejs.py,sha256=9RjTHtBfWY0GmD_DPILjYyylGqGUN-DERaGgLfaObSs,10210
|
|
190
192
|
bbot/modules/robots.py,sha256=LGG6ixsxrlaCk-mi4Lp6kB2RB1v-25NhTAQxdQEtH8s,2172
|
|
191
193
|
bbot/modules/securitytrails.py,sha256=5Jk_HTQP8FRq6A30sN19FU79uLJt7aiOsI2dxNkLDcM,1148
|
|
192
|
-
bbot/modules/securitytxt.py,sha256=
|
|
194
|
+
bbot/modules/securitytxt.py,sha256=_iK9t-srNMdeN3x0NQ9Q87Sc5eyKX4yTgljr08M-OOc,4550
|
|
193
195
|
bbot/modules/shodan_dns.py,sha256=ETOyUhCiAETlGUAQhvAP47oEEPYss7fm_F_CAeCQyoI,842
|
|
194
196
|
bbot/modules/shodan_idb.py,sha256=PB5vplwpjPjbfoMeez333rWYqFY5RuMp40ZN9hNCJAg,6088
|
|
195
197
|
bbot/modules/sitedossier.py,sha256=MR9fSkgE_3YGsUe7M-TyJ2GdpBtF3oLKDl9agAwzw5U,2284
|
|
@@ -197,9 +199,9 @@ bbot/modules/skymem.py,sha256=ZrxWcePFTCiDkFeAc3YLegFG-Tgw4C9af_JHiVonk84,1930
|
|
|
197
199
|
bbot/modules/smuggler.py,sha256=v8NCRgzd7wpEFZJUTAArG04bN8nNTGiHxYpGBapzi14,1580
|
|
198
200
|
bbot/modules/social.py,sha256=SaXC8gK69k9aMNHS9y7b-Ag-w7U7DbeXqrZRx9CtXLw,2499
|
|
199
201
|
bbot/modules/sslcert.py,sha256=83rf_rzlj4iku3gldx1_R1L_v3ZCGItGPay8JviUy9w,8211
|
|
200
|
-
bbot/modules/subdomaincenter.py,sha256=
|
|
202
|
+
bbot/modules/subdomaincenter.py,sha256=VJbRIazcSVeaU2KAqx9Jzpec1CaQNHtOHx0t_hh5VKg,811
|
|
201
203
|
bbot/modules/subdomainradar.py,sha256=YlRNMtNGLpa13KZ7aksAMVZdSjxe1tkywU5RXlwXpPc,6784
|
|
202
|
-
bbot/modules/telerik.py,sha256=
|
|
204
|
+
bbot/modules/telerik.py,sha256=kWi498zihl02gHaS7AvyAxlEAZvmfKgKMSTAG8CS62A,19108
|
|
203
205
|
bbot/modules/templates/bucket.py,sha256=muLPpfAGtcNhL0tLU-qHTlTNIz4yncRcVjdZMqVRtUI,7153
|
|
204
206
|
bbot/modules/templates/github.py,sha256=lrV1EYPqjtPkJsS0fQfqmLvGchNo_fO3A75W9-03gxY,2531
|
|
205
207
|
bbot/modules/templates/postman.py,sha256=MIpz2q_r6LP0kIEgByo7oX5qHhMZLOhr7oKzJI9Beec,6959
|
|
@@ -208,7 +210,7 @@ bbot/modules/templates/sql.py,sha256=o-CdyyoJvHJdJBKkj3CIGXYxUta4w2AB_2Vr-k7cDDU
|
|
|
208
210
|
bbot/modules/templates/subdomain_enum.py,sha256=epyKSly08jqaINV_AMMWbNafIeQjJqvd3aj63KD0Mck,8402
|
|
209
211
|
bbot/modules/templates/webhook.py,sha256=uGFmcJ81GzGN1UI2k2O7nQF_fyh4ehLDEg2NSXaPnhk,3373
|
|
210
212
|
bbot/modules/trickest.py,sha256=MRgLW0YiDWzlWdAjyqfPPLFb-a51r-Ffn_dphiJI_gA,1550
|
|
211
|
-
bbot/modules/trufflehog.py,sha256=
|
|
213
|
+
bbot/modules/trufflehog.py,sha256=cnsVfZyfstlANhADsJONQAmrg1iQ1j1milvh8FR4oRs,8717
|
|
212
214
|
bbot/modules/url_manipulation.py,sha256=4J3oFkqTSJPPmbKEKAHJg2Q2w4QNKtQhiN03ZJq5VtI,4326
|
|
213
215
|
bbot/modules/urlscan.py,sha256=-w_3Bm6smyG2GLQyIbnMUkKmeQVauo-V6F4_kJDYG7s,3740
|
|
214
216
|
bbot/modules/vhost.py,sha256=cirOe0HR4M0TEBN8JdXo2l0s2flc8ZSdxggGm79blT8,5459
|
|
@@ -248,19 +250,27 @@ bbot/presets/web-screenshots.yml,sha256=Kh5yDh2kKLJPxO5A67VxKWzou6XU1Ct-NFZqYsa6
|
|
|
248
250
|
bbot/presets/web-thorough.yml,sha256=d7m8R64l9dcliuIhjVi0Q_PPAKk59Y6vkJSyLJe8LGI,115
|
|
249
251
|
bbot/scanner/__init__.py,sha256=sJ7FoLQ1vwLscH8hju2PEUyGTZ_OwMVvW9b11CrCWdI,89
|
|
250
252
|
bbot/scanner/dispatcher.py,sha256=_hsIegfUDrt8CUdXqgRvp1J0UwwzqVSDxjQmiviO41c,793
|
|
251
|
-
bbot/scanner/manager.py,sha256=
|
|
253
|
+
bbot/scanner/manager.py,sha256=HD83B5ZCUwZQZ5tDqCoQ7ZLq7XF2Y5hoqJt4xUwNx34,11304
|
|
252
254
|
bbot/scanner/preset/__init__.py,sha256=If_YqKILIxjlaJvf8lFc5zQTHDkounLdC8x_72N-V10,49
|
|
253
255
|
bbot/scanner/preset/args.py,sha256=Oto4sO8E9hKeQn6Fp8ua_WB3xvYI97GgnBFg5f4jh0Y,19547
|
|
254
256
|
bbot/scanner/preset/conditions.py,sha256=hFL9cSIWGEsv2TfM5UGurf0c91cyaM8egb5IngBmIjA,1569
|
|
255
257
|
bbot/scanner/preset/environ.py,sha256=9KbEOLWkUdoAf5Ez_2A1NNm6QduQElbnNnrPi6VDhZs,4731
|
|
256
258
|
bbot/scanner/preset/path.py,sha256=X32-ZUmL7taIv37VKF1KfmeiK9fjuQOE7pWUTEbPK8c,2483
|
|
257
259
|
bbot/scanner/preset/preset.py,sha256=G_aMMI33d2OlzNUwjfi5ddJdxa8nK0oF5HrYAsuregU,40708
|
|
258
|
-
bbot/scanner/scanner.py,sha256=
|
|
260
|
+
bbot/scanner/scanner.py,sha256=Zz_syqeBpzc0Df1RH5HizylM2IPbFe7ZKd6e9quHWY4,55578
|
|
259
261
|
bbot/scanner/stats.py,sha256=re93sArKXZSiD0Owgqk2J3Kdvfm3RL4Y9Qy_VOcaVk8,3623
|
|
260
262
|
bbot/scanner/target.py,sha256=lI0Tn5prQiPiJE3WW-ZLx_l6EFqzAVabtyL-nfXJ8cE,10636
|
|
263
|
+
bbot/scripts/benchmark_report.py,sha256=kBMaKFrmURk8tFYbGKvkGQpfNxrX46CBWG9DdaXhHgs,16230
|
|
261
264
|
bbot/scripts/docs.py,sha256=aYAHlcHtMAhM-XGTDiSpzccnX1dh0Xi_WxmC2bgylQ4,11373
|
|
262
265
|
bbot/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
263
266
|
bbot/test/bbot_fixtures.py,sha256=XrCQDLVe80BG3QTUDnXb0y-cWnBpJJoRh2Z3J3xJn_w,9961
|
|
267
|
+
bbot/test/benchmarks/__init__.py,sha256=_wY0BNcnb1ihbr44DIvHlVObxbwGtbnUhcj-_IFgwvc,107
|
|
268
|
+
bbot/test/benchmarks/test_bloom_filter_benchmarks.py,sha256=L6r3fKkMA8v-baWAYXOr_TvHNIHm6W4hl-mIc9mhkUI,4284
|
|
269
|
+
bbot/test/benchmarks/test_closest_match_benchmarks.py,sha256=sOSP1zKargwLlD4v19LO6W7lEM3tO23y_1bcMQzr36Y,3062
|
|
270
|
+
bbot/test/benchmarks/test_event_validation_benchmarks.py,sha256=nZehZvvuO2hPWa8P8FsHUs1G5V1zDl9aXGHEutWqsTQ,19467
|
|
271
|
+
bbot/test/benchmarks/test_excavate_benchmarks.py,sha256=pafpyFwiPMK4hhh99i1Aic5yZBO2YzVdLqwGqjQzs7o,13008
|
|
272
|
+
bbot/test/benchmarks/test_ipaddress_benchmarks.py,sha256=Dkayk8AiVUb_oYPA1ek7_vTvz1i87I9E21e1TGJFVjs,5134
|
|
273
|
+
bbot/test/benchmarks/test_weighted_shuffle_benchmarks.py,sha256=70vBKJnw3AlKwEVTME5Hx2O197YRIOkgJCqbRG-4ur8,3078
|
|
264
274
|
bbot/test/conftest.py,sha256=194ckIxGs5EUp2wa1VOIFwClavFSlIPOKU5tKjAaN4k,11783
|
|
265
275
|
bbot/test/coverage.cfg,sha256=ko9RacAYsJxWJCL8aEuNtkAOtP9lexYiDbeFWe8Tp8Y,31
|
|
266
276
|
bbot/test/fastapi_test.py,sha256=9OhOFRyagXTshMsnuzuKIcR4uzS6VW65m7h9KgB4jSA,381
|
|
@@ -270,7 +280,7 @@ bbot/test/test.conf,sha256=JX0-Wl7N7VN6x_hhkFL-RF4TDAHgL9OfNNdujfD7tHo,994
|
|
|
270
280
|
bbot/test/test_output.ndjson,sha256=Jfor8nUJ3QTEwXxD6UULrFXM4zhP5wflWo_UNekM3V8,323
|
|
271
281
|
bbot/test/test_step_1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
272
282
|
bbot/test/test_step_1/test__module__tests.py,sha256=SZGsvbq8mG7dIn93Ka8hnJsFt4QDXmrdvPavsU8NN40,1479
|
|
273
|
-
bbot/test/test_step_1/test_bbot_fastapi.py,sha256=
|
|
283
|
+
bbot/test/test_step_1/test_bbot_fastapi.py,sha256=jujpDw4yedGpE2frPRMNV8mq4a5KuzW-_DGSkodxH_o,2552
|
|
274
284
|
bbot/test/test_step_1/test_bloom_filter.py,sha256=Uy6qUZr4mSbD1VmU8Yq8u3ezqZziCjmZQiE844_FoX8,2143
|
|
275
285
|
bbot/test/test_step_1/test_cli.py,sha256=yp61_di0vaEeC6USNCEOibc-Uh81fvEcqgfxLfNk09w,27586
|
|
276
286
|
bbot/test/test_step_1/test_command.py,sha256=5IeGV6TKB0xtFEsfsU_0mNrOmEdIQiQ3FHkUmsBNoOI,6485
|
|
@@ -280,7 +290,7 @@ bbot/test/test_step_1/test_dns.py,sha256=6dKAhdQRZ_bceBrICIpaaV5MBGHeDVBQ-qSYD9B
|
|
|
280
290
|
bbot/test/test_step_1/test_docs.py,sha256=YWVGNRfzcrvDmFekX0Cq9gutQplsqvhKTpZ0XK4tWvo,82
|
|
281
291
|
bbot/test/test_step_1/test_engine.py,sha256=3HkCPtYhUxiZzfA-BRHpLsyaRj9wIXKbb49BCk9dILM,4267
|
|
282
292
|
bbot/test/test_step_1/test_event_seeds.py,sha256=s_0BRqkahX4MYYqkmPqgcCsFrMbiXdTfLuKqNU2jkEU,6652
|
|
283
|
-
bbot/test/test_step_1/test_events.py,sha256=
|
|
293
|
+
bbot/test/test_step_1/test_events.py,sha256=FWSXAVFdVZaxxDS4anFKYTLm8AHVSULI9ZMHzKcaOLY,54263
|
|
284
294
|
bbot/test/test_step_1/test_files.py,sha256=5Q_3jPpMXULxDHsanSDUaj8zF8bXzKdiJZHOmoYpLhQ,699
|
|
285
295
|
bbot/test/test_step_1/test_helpers.py,sha256=7GP6-95yWRBGhx0-p6N7zZVEDcF9EO9wc0rkhs1JDsg,40281
|
|
286
296
|
bbot/test/test_step_1/test_manager_deduplication.py,sha256=hZQpDXzg6zvzxFolVOcJuY-ME8NXjZUsqS70BRNXp8A,15594
|
|
@@ -289,14 +299,14 @@ bbot/test/test_step_1/test_modules_basic.py,sha256=ELpGlsthSq8HaxB5My8-ESVHqMxqd
|
|
|
289
299
|
bbot/test/test_step_1/test_presets.py,sha256=HnJhKwDnVh9Y6adgxqe85677rWpnFil_WS5GjX21ZvM,40959
|
|
290
300
|
bbot/test/test_step_1/test_python_api.py,sha256=Fk5bxEsPSjsMZ_CcRMTJft8I48EizwHJivG9Fy4jIu0,5502
|
|
291
301
|
bbot/test/test_step_1/test_regexes.py,sha256=GEJE4NY6ge0WnG3BcFgRiT78ksy2xpFk6UdS9vGQMPs,15254
|
|
292
|
-
bbot/test/test_step_1/test_scan.py,sha256=
|
|
302
|
+
bbot/test/test_step_1/test_scan.py,sha256=ywWFSmwDGQFEvQiWwJ0FBTWWarh3IEyMz98gNBHUJkU,10465
|
|
293
303
|
bbot/test/test_step_1/test_scope.py,sha256=S2nssENKJKCvgXUMyU8MFQmXHeUIz0C_sbWGkdYti2A,3063
|
|
294
304
|
bbot/test/test_step_1/test_target.py,sha256=4Xz6Fns_6wa2O3AXDBvd7W04LCfZSCiit2lezQJicTI,19472
|
|
295
305
|
bbot/test/test_step_1/test_web.py,sha256=qzMb5v_1l6fK6SvJZoHpBI3Zb7iaHU_VnenQ8UQIK-4,19637
|
|
296
306
|
bbot/test/test_step_1/test_web_envelopes.py,sha256=28cwm_HZvdGo__uiaShO2AwTJ728FTKwpESRB418AIc,18259
|
|
297
307
|
bbot/test/test_step_2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
298
308
|
bbot/test/test_step_2/module_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
-
bbot/test/test_step_2/module_tests/base.py,sha256=
|
|
309
|
+
bbot/test/test_step_2/module_tests/base.py,sha256=sc9vVDgDmXjYIh7IJpxgHePDvdU1xcNVuqmnkJJAivE,6205
|
|
300
310
|
bbot/test/test_step_2/module_tests/test_module_affiliates.py,sha256=d6uAzb_MF4oNGFEBG7Y6T2y0unWpf1gqNxUXRaYqOdk,673
|
|
301
311
|
bbot/test/test_step_2/module_tests/test_module_aggregate.py,sha256=hjxbMxAEFhS7W8RamBrM1t6T-tsLHq95MmQVfrYsock,487
|
|
302
312
|
bbot/test/test_step_2/module_tests/test_module_ajaxpro.py,sha256=S2pFV0TgOJ01SMHnIxcoBkGZ8SAaQVY9o32DOFoZ1u4,3857
|
|
@@ -347,7 +357,7 @@ bbot/test/test_step_2/module_tests/test_module_dockerhub.py,sha256=9T8CFcFP32MOp
|
|
|
347
357
|
bbot/test/test_step_2/module_tests/test_module_dotnetnuke.py,sha256=Q7M3hrbEwOuORZXPS-pIGFTRzB2-g4cEvGtsEcTp7t8,8049
|
|
348
358
|
bbot/test/test_step_2/module_tests/test_module_emailformat.py,sha256=cKxBPnEQ4AiRKV_-hSYEE6756ypst3hi6MN0L5RTukY,461
|
|
349
359
|
bbot/test/test_step_2/module_tests/test_module_emails.py,sha256=bZjtO8N3GG2_g6SUEYprAFLcsi7SlwNPJJ0nODfrWYU,944
|
|
350
|
-
bbot/test/test_step_2/module_tests/test_module_excavate.py,sha256=
|
|
360
|
+
bbot/test/test_step_2/module_tests/test_module_excavate.py,sha256=AUh9fegqoxZjZHISWryuJgK3HJqKEUhFsRtMTROFfa4,63067
|
|
351
361
|
bbot/test/test_step_2/module_tests/test_module_extractous.py,sha256=6wuZ978y5YIPYdR7av6otrY_5jUlzzuJDZ-DsBNOoLA,18197
|
|
352
362
|
bbot/test/test_step_2/module_tests/test_module_ffuf.py,sha256=z8ihAM1WYss7QGXIjbi67cekg8iOemDjaM8YR9_qSEs,4100
|
|
353
363
|
bbot/test/test_step_2/module_tests/test_module_ffuf_shortnames.py,sha256=0-a9J-gq8bUtmxl_-QPVidwZ9KkCvgvoG30Ot3a8lqM,8406
|
|
@@ -379,7 +389,7 @@ bbot/test/test_step_2/module_tests/test_module_ipstack.py,sha256=C0Le03UqvShpATo
|
|
|
379
389
|
bbot/test/test_step_2/module_tests/test_module_jadx.py,sha256=WP90x3whiyh0xCb5V4w5002PM564KKC44OVuyCGQ6Eo,2585
|
|
380
390
|
bbot/test/test_step_2/module_tests/test_module_json.py,sha256=gmlqge5ZJpjVMGs7OLZBsNlSFTTrKnKjIZMIU23o8VQ,3350
|
|
381
391
|
bbot/test/test_step_2/module_tests/test_module_leakix.py,sha256=DQaQsL4ewpuYeygp-sgcvdeOSzvHq77_eYjKcgebS7A,1817
|
|
382
|
-
bbot/test/test_step_2/module_tests/test_module_lightfuzz.py,sha256=
|
|
392
|
+
bbot/test/test_step_2/module_tests/test_module_lightfuzz.py,sha256=ZuFAQqn6WF_jvun3Lvd5ozQcle-ZisINu1kU-DTB11o,72074
|
|
383
393
|
bbot/test/test_step_2/module_tests/test_module_medusa.py,sha256=vYoAyMf0LbIXCoUzLycOISZtF7M58E30WjuLuqxDiCg,1671
|
|
384
394
|
bbot/test/test_step_2/module_tests/test_module_mysql.py,sha256=4wAPjbjhlxmOkEhQnIQIBC2BLEaE57TX6lChGZ3zLsU,2630
|
|
385
395
|
bbot/test/test_step_2/module_tests/test_module_myssl.py,sha256=zRJ1sOEespWtBx2jA07bW5sHD1XQ9pV0PtHtGogo7Gs,1531
|
|
@@ -403,6 +413,7 @@ bbot/test/test_step_2/module_tests/test_module_postman_download.py,sha256=u3lF7U
|
|
|
403
413
|
bbot/test/test_step_2/module_tests/test_module_python.py,sha256=6UQVXGJ1ugfNbt9l_nN0q5FVxNWlpq6j0sZcB0Nh_Pg,184
|
|
404
414
|
bbot/test/test_step_2/module_tests/test_module_rapiddns.py,sha256=zXHNLnUjLO22yRwrDFCZ40sRTmFVZEj9q_dyK8w1TYM,4441
|
|
405
415
|
bbot/test/test_step_2/module_tests/test_module_reflected_parameters.py,sha256=4cY8yK9iImB1O68pi1lACcPEtNQ9-sud9Xl16fYB8cU,9003
|
|
416
|
+
bbot/test/test_step_2/module_tests/test_module_retirejs.py,sha256=1nzTxoMnq10N7X33soJ1hKNBvWXhAo5hdXo7HKaYRfw,6829
|
|
406
417
|
bbot/test/test_step_2/module_tests/test_module_robots.py,sha256=8rRw4GpGE6tN_W3ohtpfWiji_bEEmD31wvxz7r1FqnI,1564
|
|
407
418
|
bbot/test/test_step_2/module_tests/test_module_securitytrails.py,sha256=NB8_PhWN1-2s8wporRjI6rrQeQW4inoz4Z_mBhhycXo,758
|
|
408
419
|
bbot/test/test_step_2/module_tests/test_module_securitytxt.py,sha256=ZGl1iZVVE_JfqC_AAYSLLdXGOu57rCM1rnCYlRNxrM0,2390
|
|
@@ -422,7 +433,7 @@ bbot/test/test_step_2/module_tests/test_module_subdomaincenter.py,sha256=KXprbHa
|
|
|
422
433
|
bbot/test/test_step_2/module_tests/test_module_subdomainradar.py,sha256=c6aUKr4yrGJqrQP0hOaP6Ao4-PQn1N_IlaqSw6E-xW8,10672
|
|
423
434
|
bbot/test/test_step_2/module_tests/test_module_subdomains.py,sha256=r1zCmw5ZZ_0wA7L7cDg9dpgdpRigjQXhf-Zm7P4ya9Q,1108
|
|
424
435
|
bbot/test/test_step_2/module_tests/test_module_teams.py,sha256=r91ZZxhj3pEhKnjr1jGwhcqOPXTqNJNupC1CDKccfH8,1638
|
|
425
|
-
bbot/test/test_step_2/module_tests/test_module_telerik.py,sha256=
|
|
436
|
+
bbot/test/test_step_2/module_tests/test_module_telerik.py,sha256=1U9YBbXc7TnL1ZDE7YorLLM7XLBvzBLr5w4wiXnyIHQ,11098
|
|
426
437
|
bbot/test/test_step_2/module_tests/test_module_trickest.py,sha256=6mTYH6fIah-WbKnFI-_WZBwRdKFi-oeWyVtl1n0nVAU,1630
|
|
427
438
|
bbot/test/test_step_2/module_tests/test_module_trufflehog.py,sha256=lXX2KYh5s1FVpivth43Nj3MLfMkiksrooEne_DAL_qg,96796
|
|
428
439
|
bbot/test/test_step_2/module_tests/test_module_txt.py,sha256=R-EBfEZM0jwY2yuVyfYhoccDOl0Y2uQZSkXQ1HyinUA,247
|
|
@@ -453,8 +464,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ZSIVebs7ptMvHx
|
|
|
453
464
|
bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
|
|
454
465
|
bbot/wordlists/valid_url_schemes.txt,sha256=0B_VAr9Dv7aYhwi6JSBDU-3M76vNtzN0qEC_RNLo7HE,3310
|
|
455
466
|
bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
|
|
456
|
-
bbot-2.
|
|
457
|
-
bbot-2.
|
|
458
|
-
bbot-2.
|
|
459
|
-
bbot-2.
|
|
460
|
-
bbot-2.
|
|
467
|
+
bbot-2.7.0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
|
|
468
|
+
bbot-2.7.0.dist-info/METADATA,sha256=obVzSaFNKFBn5GXbDP5iixof-7hwLh2N01mpBQpVYU0,18339
|
|
469
|
+
bbot-2.7.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
470
|
+
bbot-2.7.0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
|
|
471
|
+
bbot-2.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|