bbot 2.2.0.5242rc0__py3-none-any.whl → 2.2.0.5279rc0__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/config/logger.py +6 -3
- bbot/core/core.py +20 -3
- bbot/core/engine.py +3 -3
- bbot/core/event/base.py +16 -12
- bbot/core/helpers/command.py +4 -3
- bbot/core/helpers/depsinstaller/installer.py +13 -5
- bbot/core/helpers/misc.py +18 -0
- bbot/core/helpers/process.py +0 -18
- bbot/core/multiprocess.py +58 -0
- bbot/defaults.yml +3 -0
- bbot/modules/censys.py +9 -13
- bbot/modules/internal/dnsresolve.py +12 -1
- bbot/modules/internal/speculate.py +33 -23
- bbot/modules/leakix.py +2 -3
- bbot/modules/passivetotal.py +9 -11
- bbot/presets/fast.yml +16 -0
- bbot/scanner/preset/args.py +17 -1
- bbot/scanner/preset/preset.py +8 -8
- bbot/scanner/scanner.py +4 -1
- bbot/test/bbot_fixtures.py +5 -2
- bbot/test/conftest.py +95 -84
- bbot/test/fastapi_test.py +17 -0
- bbot/test/test_step_1/test_bbot_fastapi.py +82 -0
- bbot/test/test_step_1/test_cli.py +29 -0
- bbot/test/test_step_1/test_dns.py +36 -0
- bbot/test/test_step_1/test_events.py +32 -1
- bbot/test/test_step_1/test_modules_basic.py +0 -3
- bbot/test/test_step_1/test_presets.py +1 -2
- bbot/test/test_step_1/test_web.py +3 -0
- bbot/test/test_step_2/module_tests/test_module_censys.py +4 -1
- bbot/test/test_step_2/module_tests/test_module_dotnetnuke.py +0 -6
- bbot/test/test_step_2/module_tests/test_module_leakix.py +5 -1
- bbot/test/test_step_2/module_tests/test_module_passivetotal.py +3 -1
- {bbot-2.2.0.5242rc0.dist-info → bbot-2.2.0.5279rc0.dist-info}/METADATA +1 -1
- {bbot-2.2.0.5242rc0.dist-info → bbot-2.2.0.5279rc0.dist-info}/RECORD +39 -35
- {bbot-2.2.0.5242rc0.dist-info → bbot-2.2.0.5279rc0.dist-info}/LICENSE +0 -0
- {bbot-2.2.0.5242rc0.dist-info → bbot-2.2.0.5279rc0.dist-info}/WHEEL +0 -0
- {bbot-2.2.0.5242rc0.dist-info → bbot-2.2.0.5279rc0.dist-info}/entry_points.txt +0 -0
|
@@ -2,11 +2,12 @@ from .base import ModuleTestBase
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
class TestCensys(ModuleTestBase):
|
|
5
|
-
config_overrides = {"modules": {"censys": {"
|
|
5
|
+
config_overrides = {"modules": {"censys": {"api_key": "api_id:api_secret"}}}
|
|
6
6
|
|
|
7
7
|
async def setup_before_prep(self, module_test):
|
|
8
8
|
module_test.httpx_mock.add_response(
|
|
9
9
|
url="https://search.censys.io/api/v1/account",
|
|
10
|
+
match_headers={"Authorization": "Basic YXBpX2lkOmFwaV9zZWNyZXQ="},
|
|
10
11
|
json={
|
|
11
12
|
"email": "info@blacklanternsecurity.com",
|
|
12
13
|
"login": "nope",
|
|
@@ -17,6 +18,7 @@ class TestCensys(ModuleTestBase):
|
|
|
17
18
|
)
|
|
18
19
|
module_test.httpx_mock.add_response(
|
|
19
20
|
url="https://search.censys.io/api/v2/certificates/search",
|
|
21
|
+
match_headers={"Authorization": "Basic YXBpX2lkOmFwaV9zZWNyZXQ="},
|
|
20
22
|
match_content=b'{"q": "names: blacklanternsecurity.com", "per_page": 100}',
|
|
21
23
|
json={
|
|
22
24
|
"code": 200,
|
|
@@ -45,6 +47,7 @@ class TestCensys(ModuleTestBase):
|
|
|
45
47
|
)
|
|
46
48
|
module_test.httpx_mock.add_response(
|
|
47
49
|
url="https://search.censys.io/api/v2/certificates/search",
|
|
50
|
+
match_headers={"Authorization": "Basic YXBpX2lkOmFwaV9zZWNyZXQ="},
|
|
48
51
|
match_content=b'{"q": "names: blacklanternsecurity.com", "per_page": 100, "cursor": "NextToken"}',
|
|
49
52
|
json={
|
|
50
53
|
"code": 200,
|
|
@@ -92,9 +92,6 @@ MAPI=1
|
|
|
92
92
|
dnn_installwizard_privesc_detection = False
|
|
93
93
|
|
|
94
94
|
for e in events:
|
|
95
|
-
print(e)
|
|
96
|
-
print(e.type)
|
|
97
|
-
|
|
98
95
|
if e.type == "TECHNOLOGY" and "DotNetNuke" in e.data["technology"]:
|
|
99
96
|
dnn_technology_detection = True
|
|
100
97
|
|
|
@@ -170,9 +167,6 @@ class TestDotnetnuke_blindssrf(ModuleTestBase):
|
|
|
170
167
|
dnn_dnnimagehandler_blindssrf = False
|
|
171
168
|
|
|
172
169
|
for e in events:
|
|
173
|
-
|
|
174
|
-
print(e)
|
|
175
|
-
print(e.type)
|
|
176
170
|
if e.type == "TECHNOLOGY" and "DotNetNuke" in e.data["technology"]:
|
|
177
171
|
dnn_technology_detection = True
|
|
178
172
|
|
|
@@ -6,7 +6,7 @@ class TestLeakIX(ModuleTestBase):
|
|
|
6
6
|
|
|
7
7
|
async def setup_before_prep(self, module_test):
|
|
8
8
|
module_test.httpx_mock.add_response(
|
|
9
|
-
url="https://leakix.net/host/1.
|
|
9
|
+
url="https://leakix.net/host/1.1.1.1",
|
|
10
10
|
match_headers={"api-key": "asdf"},
|
|
11
11
|
json={"title": "Not Found", "description": "Host not found"},
|
|
12
12
|
)
|
|
@@ -30,6 +30,10 @@ class TestLeakIX_NoAPIKey(ModuleTestBase):
|
|
|
30
30
|
modules_overrides = ["leakix"]
|
|
31
31
|
|
|
32
32
|
async def setup_before_prep(self, module_test):
|
|
33
|
+
module_test.httpx_mock.add_response(
|
|
34
|
+
url="https://leakix.net/host/1.1.1.1",
|
|
35
|
+
json={"title": "Not Found", "description": "Host not found"},
|
|
36
|
+
)
|
|
33
37
|
module_test.httpx_mock.add_response(
|
|
34
38
|
url=f"https://leakix.net/api/subdomains/blacklanternsecurity.com",
|
|
35
39
|
json=[
|
|
@@ -2,15 +2,17 @@ from .base import ModuleTestBase
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
class TestPassiveTotal(ModuleTestBase):
|
|
5
|
-
config_overrides = {"modules": {"passivetotal": {"
|
|
5
|
+
config_overrides = {"modules": {"passivetotal": {"api_key": "jon@bls.fakedomain:asdf"}}}
|
|
6
6
|
|
|
7
7
|
async def setup_before_prep(self, module_test):
|
|
8
8
|
module_test.httpx_mock.add_response(
|
|
9
9
|
url="https://api.passivetotal.org/v2/account/quota",
|
|
10
|
+
match_headers={"Authorization": "Basic am9uQGJscy5mYWtlZG9tYWluOmFzZGY="},
|
|
10
11
|
json={"user": {"counts": {"search_api": 10}, "limits": {"search_api": 20}}},
|
|
11
12
|
)
|
|
12
13
|
module_test.httpx_mock.add_response(
|
|
13
14
|
url="https://api.passivetotal.org/v2/enrichment/subdomains?query=blacklanternsecurity.com",
|
|
15
|
+
match_headers={"Authorization": "Basic am9uQGJscy5mYWtlZG9tYWluOmFzZGY="},
|
|
14
16
|
json={"subdomains": ["asdf"]},
|
|
15
17
|
)
|
|
16
18
|
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
bbot/__init__.py,sha256=
|
|
1
|
+
bbot/__init__.py,sha256=G7qyJkDYdbjzsG2LISkABgKOGKTOSAGPXYM0nhFcAxM,130
|
|
2
2
|
bbot/cli.py,sha256=7S3a4eB-Dl8yodc5WC-927Z30CNlLl9EXimGvIVypJo,10434
|
|
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=pNrcw61UKKZeMt0rp9Ac5mUK7LdIRmcpojMxI-LwjeA,1413
|
|
6
|
-
bbot/core/config/logger.py,sha256=
|
|
7
|
-
bbot/core/core.py,sha256=
|
|
8
|
-
bbot/core/engine.py,sha256=
|
|
6
|
+
bbot/core/config/logger.py,sha256=YBWLg3x0bEaHKQR8Fn9e1Y0OeyFTED0fgAMtUZT2gEw,10583
|
|
7
|
+
bbot/core/core.py,sha256=zFSbPd0YcjpeI1uO9U6lYY5gKmzNSTGhduvXvB6qZ0M,7065
|
|
8
|
+
bbot/core/engine.py,sha256=XulYpIPtFej1fYB0pjJB1z1hYcI9aHIUuE0fpMcLSc8,29352
|
|
9
9
|
bbot/core/event/__init__.py,sha256=8ut88ZUg0kbtWkOx2j3XzNr_3kTfgoM-3UdiWHFA_ag,56
|
|
10
|
-
bbot/core/event/base.py,sha256=
|
|
10
|
+
bbot/core/event/base.py,sha256=y6uvXJ2Z832d0v7lvkbuP8BJraqaiGM35BcvPkPT1Ig,60666
|
|
11
11
|
bbot/core/event/helpers.py,sha256=PUN4Trq5_wpKVuhmwUQWAr40apgMXhJ9Gz-VfZ0j3lA,1554
|
|
12
12
|
bbot/core/flags.py,sha256=Ltvm8Bc4D65I55HuU5bzyjO1R3yMDNpVmreGU83ZBXE,1266
|
|
13
13
|
bbot/core/helpers/__init__.py,sha256=0UNwcZjNsX41hbHdo3yZPuARkYWch-okI68DScexve4,86
|
|
14
14
|
bbot/core/helpers/async_helpers.py,sha256=KF-Dl4zI_VjXhQdOmwGub3sIGavlXlitZkzJAn_l6Tw,3621
|
|
15
15
|
bbot/core/helpers/bloom.py,sha256=z7gttz-ugvwj7s2L14feJhEx2rzECdqcB255A0hjvNI,2579
|
|
16
16
|
bbot/core/helpers/cache.py,sha256=1aMr3HVD45cDtHEG5xlznDUCywRgO9oRFidscrs_5sA,1537
|
|
17
|
-
bbot/core/helpers/command.py,sha256=
|
|
17
|
+
bbot/core/helpers/command.py,sha256=2i0hz-uo6zUV9oGtXf-9erh_g3SazDtYeh6pETlfPPA,12810
|
|
18
18
|
bbot/core/helpers/depsinstaller/__init__.py,sha256=2mx1nYylSyvwl0GCM9YDHqrFEt2_5dSWAjP1RmhmbQg,37
|
|
19
|
-
bbot/core/helpers/depsinstaller/installer.py,sha256=
|
|
19
|
+
bbot/core/helpers/depsinstaller/installer.py,sha256=1YQfPNSYKSgDVUtOCMiTECTqZuA5U1whI2IlSiSVZF8,17125
|
|
20
20
|
bbot/core/helpers/depsinstaller/sudo_askpass.py,sha256=yGa2OQv30RO75QkMuG1iruKqb7amQxRVRRcHmvIeGhk,1276
|
|
21
21
|
bbot/core/helpers/diff.py,sha256=7waBeHFGnAKn-R-sBd-wc3yjwxT_umwy4YxfE7JFd6w,10599
|
|
22
22
|
bbot/core/helpers/dns/__init__.py,sha256=2JK8P0BUfPlh4CTuuOWQCOacwL7NEtGFYPJsxbA0Zwo,27
|
|
@@ -29,10 +29,10 @@ bbot/core/helpers/files.py,sha256=GqrwNGJljUvGSzaOW5-Y357hkt7j88dOYbzQxJGsdTc,57
|
|
|
29
29
|
bbot/core/helpers/helper.py,sha256=3O96peNBvSkaJosft8w9-nKjCscEdykTayGcUlHRqLw,8394
|
|
30
30
|
bbot/core/helpers/interactsh.py,sha256=Q9IHUzH-T7e1s4YTHevHe-VJj1Mokv0EHY16UZJdl8M,12627
|
|
31
31
|
bbot/core/helpers/libmagic.py,sha256=a9tmL558cM5lzN69YahBc7JNHmPnBJgu9Wa8Q5bH1S0,3631
|
|
32
|
-
bbot/core/helpers/misc.py,sha256=
|
|
32
|
+
bbot/core/helpers/misc.py,sha256=dk7O0SDKe6eP_AjKEHXyItKcJXLpQOa2gghWmKMSLnI,87430
|
|
33
33
|
bbot/core/helpers/names_generator.py,sha256=Sj_Q-7KQyElEpalzlUadSwaniESqrIVVEle9ycPIiho,10322
|
|
34
34
|
bbot/core/helpers/ntlm.py,sha256=P2Xj4-GPos2iAzw4dfk0FJp6oGyycGhu2x6sLDVjYjs,2573
|
|
35
|
-
bbot/core/helpers/process.py,sha256=
|
|
35
|
+
bbot/core/helpers/process.py,sha256=2bbveUuLIrr6wjixZRdFX-gqNE-b7rxVpzBPHYNcmzM,1704
|
|
36
36
|
bbot/core/helpers/ratelimiter.py,sha256=K8qFIyJPJtfdb9kSW6_lL6ahWqxR2uWyCBkDlg6uJgo,1990
|
|
37
37
|
bbot/core/helpers/regex.py,sha256=XURaY6ijpOYYU9lzWMAKg12G1VFtGJjlJl07_eN1xxk,4170
|
|
38
38
|
bbot/core/helpers/regexes.py,sha256=kz3y3hyEJvsnF7-4NrkrHTwwhkbRqEYi_wqA_rmZlgQ,5859
|
|
@@ -45,9 +45,10 @@ bbot/core/helpers/web/ssl_context.py,sha256=aWVgl-d0HoE8B4EBKNxaa5UAzQmx79DjDByf
|
|
|
45
45
|
bbot/core/helpers/web/web.py,sha256=K7BOts1c1bRjU5rpluD94jClwchmBMZQk8FZI1ljS94,22661
|
|
46
46
|
bbot/core/helpers/wordcloud.py,sha256=WdQwboCNcCxcUdLuB6MMMDQBL4ZshFM_f6GW7nUZEBQ,19819
|
|
47
47
|
bbot/core/modules.py,sha256=OOUSncr-EM6bJBrI3iH5wvfnpTXKQ-A8OL8UMvkL0CU,31432
|
|
48
|
+
bbot/core/multiprocess.py,sha256=ocQHanskJ09gHwe7RZmwNdZyCOQyeyUoIHCtLbtvXUk,1771
|
|
48
49
|
bbot/core/shared_deps.py,sha256=A3vrI62uPTTayNIHhWAj6xz43cj--oXWC4prmDlgJnw,6958
|
|
49
50
|
bbot/db/sql/models.py,sha256=AXefz4nEtpV2p19d6rLaEcCQNnqXODpldA-P5uSUntg,4729
|
|
50
|
-
bbot/defaults.yml,sha256=
|
|
51
|
+
bbot/defaults.yml,sha256=v6YZ2g-nnUZQdhD-rhod4LZiYciI-cMDFz4JF7Kh5Lk,6213
|
|
51
52
|
bbot/errors.py,sha256=xwQcD26nU9oc7-o0kv5jmEDTInmi8_W8eKAgQZZxdVM,953
|
|
52
53
|
bbot/logger.py,sha256=rLcLzNDvfR8rFj7_tZ-f5QB3Z8T0RVroact3W0ogjpA,1408
|
|
53
54
|
bbot/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -73,7 +74,7 @@ bbot/modules/bufferoverrun.py,sha256=FcHzj04iSyBqyfUY6lBPLlkD-hT-hBgICKJqlgIGkHY
|
|
|
73
74
|
bbot/modules/builtwith.py,sha256=A2Q70GtHtMHQgLYgX-UhUNzBwIZ7n0p5IOEI5lPSBk4,5369
|
|
74
75
|
bbot/modules/bypass403.py,sha256=Qrszg-vVfjKA0IosM88CekpW6BcazJThpl5moXIdeiQ,6843
|
|
75
76
|
bbot/modules/c99.py,sha256=cvyLZ7oHk6kxq6UWu0oISbXLKwnZW9yNBmsvT1RTGwI,1388
|
|
76
|
-
bbot/modules/censys.py,sha256=
|
|
77
|
+
bbot/modules/censys.py,sha256=J9ntCZGpS-HPf4EfoS6NpkOv7RqGk7AZmYIpLI8uYIE,3309
|
|
77
78
|
bbot/modules/certspotter.py,sha256=dENaH4gUGV-ainYOupBO7GkOW9KQutTzC1NdWfpMhnw,877
|
|
78
79
|
bbot/modules/chaos.py,sha256=axnGkINmr-3Hu4x_x3t7eQ8n7wpCsmUp2HykWhcRDGU,1513
|
|
79
80
|
bbot/modules/code_repository.py,sha256=x70Z45VnNNMF8BPkHfGWZXsZXw_fStGB3y0-8jbP1Ns,2078
|
|
@@ -120,15 +121,15 @@ bbot/modules/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
|
120
121
|
bbot/modules/internal/aggregate.py,sha256=csWYIt2fUp9K_CRxP3bndUMIjpNIh8rmBubp5Fr1-nc,395
|
|
121
122
|
bbot/modules/internal/base.py,sha256=BXO4Hc7XKaAOaLzolF3krJX1KibPxtek2GTQUgnCHk0,387
|
|
122
123
|
bbot/modules/internal/cloudcheck.py,sha256=kkD5DC5Y7EPCiVTdEspZktkflArU3unx--9ciBikxHo,4099
|
|
123
|
-
bbot/modules/internal/dnsresolve.py,sha256=
|
|
124
|
+
bbot/modules/internal/dnsresolve.py,sha256=UW88BlpJ7gOjPARrjVgtwpDIDPNQZRpuIRpL2yVP6T4,15251
|
|
124
125
|
bbot/modules/internal/excavate.py,sha256=1kPiaUlpJVT_xgPgmzqhpf04uanIe9ZayQsWANbzhd4,51238
|
|
125
|
-
bbot/modules/internal/speculate.py,sha256=
|
|
126
|
+
bbot/modules/internal/speculate.py,sha256=FvrtxfzBZHL48tPAdQeU_uBpCaDEBCkfk5pU6fdAyac,9264
|
|
126
127
|
bbot/modules/internetdb.py,sha256=Edg0Z84dH8dPTZMd7RlzvYBYNq8JHs_ns_ldnFxwRKo,5415
|
|
127
128
|
bbot/modules/ip2location.py,sha256=yGivX9fzvwvLpnqmYCP2a8SPjTarzrZxfRluog-nkME,2628
|
|
128
129
|
bbot/modules/ipneighbor.py,sha256=Gr-HGtyZRDp_fPjpw-Mq1al7ocFdiZbKsAoAit-EUlA,1591
|
|
129
130
|
bbot/modules/ipstack.py,sha256=j_S8WMNqQuSQgBT7AX4tO70fgbWuRYrpsS3tVsu_hn4,2200
|
|
130
131
|
bbot/modules/jadx.py,sha256=O8134-Rda5PxZyGFBNHCtvXAEUplOqQPlhTrxBGOtCw,3048
|
|
131
|
-
bbot/modules/leakix.py,sha256=
|
|
132
|
+
bbot/modules/leakix.py,sha256=9mJViaIJJ2aDD-dPPdGqW3uTTRqkiDBvp4SHw5SthCc,1501
|
|
132
133
|
bbot/modules/myssl.py,sha256=yypGgAwkPAsoo9_eUFx1TO7qdE4UAUPW24Ca6G0z76M,936
|
|
133
134
|
bbot/modules/newsletters.py,sha256=5PfkzYmnrP2Pbqsch5z575Isck5TG4RJPH8vPr_vM2c,2632
|
|
134
135
|
bbot/modules/ntlm.py,sha256=EGmb4k3YC_ZuHIU3mGUZ4yaMjE35wVQQSv8HwTsQJzY,4391
|
|
@@ -156,7 +157,7 @@ bbot/modules/output/websocket.py,sha256=sDTtHU-Ey_tvS0gMi6PVPV9L4qAmGyWeccxAKfEW
|
|
|
156
157
|
bbot/modules/paramminer_cookies.py,sha256=q1PzftHQpCHLz81_VgLZsO6moia7ZtnU32igfcySi2w,1816
|
|
157
158
|
bbot/modules/paramminer_getparams.py,sha256=_j6rgaqV5wGJoa8p5-KKbe2YsVGUtmWIanCVtFiF97Y,1893
|
|
158
159
|
bbot/modules/paramminer_headers.py,sha256=QEnWxveQVuS91MEYKYtfquqdNzimN7sQHuxpcqiTHpo,10305
|
|
159
|
-
bbot/modules/passivetotal.py,sha256=
|
|
160
|
+
bbot/modules/passivetotal.py,sha256=sq6xN8k3Dfbpa4hEleR8d9u45_lA5kOCTTaHtkjgVAg,1593
|
|
160
161
|
bbot/modules/pgp.py,sha256=Xu2M9WEIlwTm5-Lv29g7BblI05tD9Dl0XsYSeY6UURs,2065
|
|
161
162
|
bbot/modules/portscan.py,sha256=eb1sNb8ffe5gcjOsOOvX48oNtecJ1Tqq6exoz_G_jZ4,13327
|
|
162
163
|
bbot/modules/postman.py,sha256=tbLrxi5pOycLABvphORxyK9duTSBXZLgpf1vAZvOIa0,3512
|
|
@@ -200,6 +201,7 @@ bbot/presets/baddns-thorough.yml,sha256=FXiNnsf3IIms3UJtS2CwLk82Yp0IXm1OvRM61-CH
|
|
|
200
201
|
bbot/presets/cloud-enum.yml,sha256=U1IuN_Vx4zFSvobQenXwSeEqFxRX28beS1Aek3hNUBg,121
|
|
201
202
|
bbot/presets/code-enum.yml,sha256=fRThe5_vY8IqO5nZBC0y3JZwA6ynx81bBcIHBB6o9IU,83
|
|
202
203
|
bbot/presets/email-enum.yml,sha256=SBPDp2s6z0kx-dpjObCjqCV09P7OrhAUob_JJ1XVrT8,120
|
|
204
|
+
bbot/presets/fast.yml,sha256=Sb_yKy0skkGSHsTr-97hwajUFu8IETHdZPu7BfYQqEU,371
|
|
203
205
|
bbot/presets/kitchen-sink.yml,sha256=I0rxhbPJAp8f0TzR2_nkeu_Ycw_HAoipbJhmf7LSNG8,282
|
|
204
206
|
bbot/presets/spider.yml,sha256=G6GZ_Iwfb9buSOs9aH8PltgTjnlm5Zf-4AUP8fA3znY,296
|
|
205
207
|
bbot/presets/subdomain-enum.yml,sha256=tn9h8TlVB_uS3nKZFUP72HzceoRONSef66mGLWzxj9w,414
|
|
@@ -215,46 +217,48 @@ bbot/scanner/__init__.py,sha256=gCyAAbkNm8_KozNpDENCKqO3E3ZCgseplnz40AtiJ1U,56
|
|
|
215
217
|
bbot/scanner/dispatcher.py,sha256=_hsIegfUDrt8CUdXqgRvp1J0UwwzqVSDxjQmiviO41c,793
|
|
216
218
|
bbot/scanner/manager.py,sha256=335d002f_qryO4PK65Q6e4TkWtlTqoDqCvfjojqMgDQ,10500
|
|
217
219
|
bbot/scanner/preset/__init__.py,sha256=Jf2hWsHlTFtWNXL6gXD8_ZbKPFUM564ppdSxHFYnIJU,27
|
|
218
|
-
bbot/scanner/preset/args.py,sha256=
|
|
220
|
+
bbot/scanner/preset/args.py,sha256=tW4DtqH9u6h4TwRipdDCY6943IOs9b3tFoUV2-hKBuw,16000
|
|
219
221
|
bbot/scanner/preset/conditions.py,sha256=hFL9cSIWGEsv2TfM5UGurf0c91cyaM8egb5IngBmIjA,1569
|
|
220
222
|
bbot/scanner/preset/environ.py,sha256=-wbFk1YHpU8IJLKVw23Q3btQTICeX0iulURo7D673L0,4732
|
|
221
223
|
bbot/scanner/preset/path.py,sha256=p9tZC7XcgZv2jXpbEJAg1lU2b4ZLX5COFnCxEUOXz2g,2234
|
|
222
|
-
bbot/scanner/preset/preset.py,sha256
|
|
223
|
-
bbot/scanner/scanner.py,sha256=
|
|
224
|
+
bbot/scanner/preset/preset.py,sha256=_mqMbLmv0UaVeTKwi3CySh9w5JoSd5TfK3L248-gE18,39898
|
|
225
|
+
bbot/scanner/scanner.py,sha256=pcnJJyDJiHLSuWfeM22_5Zv3S0HhFUq1oEDZDngX704,53835
|
|
224
226
|
bbot/scanner/stats.py,sha256=re93sArKXZSiD0Owgqk2J3Kdvfm3RL4Y9Qy_VOcaVk8,3623
|
|
225
227
|
bbot/scanner/target.py,sha256=X25gpgRv5HmqQjGADiSe6b8744yOkRhAGAvKKYbXnSI,19886
|
|
226
228
|
bbot/scripts/docs.py,sha256=kg2CzovmUVGJx9hBZjAjUdE1hXeIwC7Ry3CyrnE8GL8,10782
|
|
227
229
|
bbot/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
228
|
-
bbot/test/bbot_fixtures.py,sha256=
|
|
229
|
-
bbot/test/conftest.py,sha256=
|
|
230
|
+
bbot/test/bbot_fixtures.py,sha256=Mov8IRGyFLkVMNaG8bNvHBjsplSOeD8I0wjJli7H1b8,9982
|
|
231
|
+
bbot/test/conftest.py,sha256=DDz2_R3Ej4XTQsqq7aSZlsia1dBe8axHbiTXkaeyVUc,11486
|
|
230
232
|
bbot/test/coverage.cfg,sha256=ko9RacAYsJxWJCL8aEuNtkAOtP9lexYiDbeFWe8Tp8Y,31
|
|
233
|
+
bbot/test/fastapi_test.py,sha256=9OhOFRyagXTshMsnuzuKIcR4uzS6VW65m7h9KgB4jSA,381
|
|
231
234
|
bbot/test/owasp_mastg.apk,sha256=Hai_V9JmEJ-aB8Ab9xEaGXXOAfGQudkUvNOuPb75byE,66651
|
|
232
235
|
bbot/test/run_tests.sh,sha256=0oprBl970NAqXS4YQa8nRUtKljPeS_WNSvd-QmO5FNY,945
|
|
233
236
|
bbot/test/test.conf,sha256=HrE7z3O91wg2MeauqIP-rwq10FAB5K6WrHJrX1eN7oc,963
|
|
234
237
|
bbot/test/test_output.ndjson,sha256=Jfor8nUJ3QTEwXxD6UULrFXM4zhP5wflWo_UNekM3V8,323
|
|
235
238
|
bbot/test/test_step_1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
236
239
|
bbot/test/test_step_1/test__module__tests.py,sha256=RpD4yuVuQRgbbUkfuasxUlyoVxhTm6TeDyi87y_AaK0,1461
|
|
240
|
+
bbot/test/test_step_1/test_bbot_fastapi.py,sha256=Ph1oTgwOz-oz5H_5Scjv0ItGwenS93lyF4eOkOOlfZ0,2538
|
|
237
241
|
bbot/test/test_step_1/test_bloom_filter.py,sha256=OpiZXsBX-I8QdTK0LqSYkGMDLA6vL_6t0wco9ypxxtQ,2114
|
|
238
|
-
bbot/test/test_step_1/test_cli.py,sha256=
|
|
242
|
+
bbot/test/test_step_1/test_cli.py,sha256=4jt_yUhSPVwaXdyi2QvGf05ImYr3cnC8vL_pDGUs2lo,25726
|
|
239
243
|
bbot/test/test_step_1/test_command.py,sha256=5IeGV6TKB0xtFEsfsU_0mNrOmEdIQiQ3FHkUmsBNoOI,6485
|
|
240
244
|
bbot/test/test_step_1/test_config.py,sha256=Q38hygpke2GDcv8OguVZuiSOnfDJxEMrRy20dN5Qsn0,887
|
|
241
245
|
bbot/test/test_step_1/test_depsinstaller.py,sha256=zr9f-wJDotD1ZvKXGEuDRWzFYMAYBI6209mI_PWPtTQ,703
|
|
242
|
-
bbot/test/test_step_1/test_dns.py,sha256=
|
|
246
|
+
bbot/test/test_step_1/test_dns.py,sha256=uFNQCaHLmmVz8KLIHTtZXSLXYLKZkRd7NiIQC5TSGXY,32132
|
|
243
247
|
bbot/test/test_step_1/test_docs.py,sha256=YWVGNRfzcrvDmFekX0Cq9gutQplsqvhKTpZ0XK4tWvo,82
|
|
244
248
|
bbot/test/test_step_1/test_engine.py,sha256=Bfid3-D9ziN93w4vym97tFEn_l2Iof08wjITTv_lAZw,4269
|
|
245
|
-
bbot/test/test_step_1/test_events.py,sha256=
|
|
249
|
+
bbot/test/test_step_1/test_events.py,sha256=kHrVwZtindhYWZy1x43w1cP3PGg8FWTSOSKRLaKAiaM,48078
|
|
246
250
|
bbot/test/test_step_1/test_files.py,sha256=5Q_3jPpMXULxDHsanSDUaj8zF8bXzKdiJZHOmoYpLhQ,699
|
|
247
251
|
bbot/test/test_step_1/test_helpers.py,sha256=oY2hWhgL-TCB67ve1bAyIwZO3wNRWpx4SjCHNUxHep8,38676
|
|
248
252
|
bbot/test/test_step_1/test_manager_deduplication.py,sha256=hZQpDXzg6zvzxFolVOcJuY-ME8NXjZUsqS70BRNXp8A,15594
|
|
249
253
|
bbot/test/test_step_1/test_manager_scope_accuracy.py,sha256=_4O5bW9PA2DIeguvqzb4CMm0i1joqqBBppw7qElL2a0,79767
|
|
250
|
-
bbot/test/test_step_1/test_modules_basic.py,sha256=
|
|
251
|
-
bbot/test/test_step_1/test_presets.py,sha256=
|
|
254
|
+
bbot/test/test_step_1/test_modules_basic.py,sha256=K-RAgEDU8_oHlj2TmgbmP-79_fUmjctIh48lAr-znhI,20082
|
|
255
|
+
bbot/test/test_step_1/test_presets.py,sha256=krABHglyphH-p2tYm87ogSxSfrDv6CtU-bredmVeC98,37288
|
|
252
256
|
bbot/test/test_step_1/test_python_api.py,sha256=BYIVREUy7rd7tKfUsnIX-w_eqQDTEo5UplMZeGMb4bs,5317
|
|
253
257
|
bbot/test/test_step_1/test_regexes.py,sha256=btlDgwM5crSkXFZNydLYn8lCDmyLW_8oX_6Aos5xAHk,14376
|
|
254
258
|
bbot/test/test_step_1/test_scan.py,sha256=yLQAZ5tvIwTULBGgUmXVg8KwMmujal7kB2p-S2_ORzA,5461
|
|
255
259
|
bbot/test/test_step_1/test_scope.py,sha256=S2nssENKJKCvgXUMyU8MFQmXHeUIz0C_sbWGkdYti2A,3063
|
|
256
260
|
bbot/test/test_step_1/test_target.py,sha256=jjG9FUmYIfyqmcmvxzBHRDkP45LIQkbym07uKO8emJg,14185
|
|
257
|
-
bbot/test/test_step_1/test_web.py,sha256=
|
|
261
|
+
bbot/test/test_step_1/test_web.py,sha256=sFkUutelRBXn2L48vZEMzB3LS5nHLQ-vzAH4cbPXo1c,18811
|
|
258
262
|
bbot/test/test_step_2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
259
263
|
bbot/test/test_step_2/module_tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
260
264
|
bbot/test/test_step_2/module_tests/base.py,sha256=ewnKM4yQr0HfZD51L2iEwtwlR8sCvGz7qA9yqPU5OM4,5821
|
|
@@ -283,7 +287,7 @@ bbot/test/test_step_2/module_tests/test_module_bufferoverrun.py,sha256=os7A6vdwl
|
|
|
283
287
|
bbot/test/test_step_2/module_tests/test_module_builtwith.py,sha256=c_Ta6OXWYdUdcwuE-AbaT-tzj8SUuglMecQX6mDavuE,5051
|
|
284
288
|
bbot/test/test_step_2/module_tests/test_module_bypass403.py,sha256=-MV06l6Q7d_sM0L2OIw1ReXJc2dj30xC3suOl2HhZTY,3551
|
|
285
289
|
bbot/test/test_step_2/module_tests/test_module_c99.py,sha256=-xyL1y3eX_rGuBR-U0N1HDZuAw_A_UysN5PupWe0iDI,7427
|
|
286
|
-
bbot/test/test_step_2/module_tests/test_module_censys.py,sha256=
|
|
290
|
+
bbot/test/test_step_2/module_tests/test_module_censys.py,sha256=RoFfLS0hgASdSoctJEzaKrHVqqRkuPRKPTYVCX2rZLo,4177
|
|
287
291
|
bbot/test/test_step_2/module_tests/test_module_certspotter.py,sha256=60jCOeK1yaUEgtTxYW-T47kZgKt9XxP2qBH9w-0MDBk,636
|
|
288
292
|
bbot/test/test_step_2/module_tests/test_module_chaos.py,sha256=9JRgtDEnnJgmEMCTB2bqRJRkBavLys-6ypHPxrM_hXk,956
|
|
289
293
|
bbot/test/test_step_2/module_tests/test_module_cloudcheck.py,sha256=sRWgotul2I4qY5SjNBDuo2iOceHs-3x0cqJ-K29GitY,3927
|
|
@@ -305,7 +309,7 @@ bbot/test/test_step_2/module_tests/test_module_dnsdumpster.py,sha256=pgwOrfq_qNx
|
|
|
305
309
|
bbot/test/test_step_2/module_tests/test_module_dnsresolve.py,sha256=15LEcggP_eVYFQdMO1zHTvoGc6n8IaUjsQDmX0sZS4o,2077
|
|
306
310
|
bbot/test/test_step_2/module_tests/test_module_docker_pull.py,sha256=-JSAo51dS3Ie9RaLBcWK0kfbg8bCPr7mohpFGAwOKPQ,27988
|
|
307
311
|
bbot/test/test_step_2/module_tests/test_module_dockerhub.py,sha256=9T8CFcFP32MOppUmSVNBUSifnk2kMONqzW_7vvvKdpk,3907
|
|
308
|
-
bbot/test/test_step_2/module_tests/test_module_dotnetnuke.py,sha256=
|
|
312
|
+
bbot/test/test_step_2/module_tests/test_module_dotnetnuke.py,sha256=UyVmrw22n7AfBoh_eEjDU_IBqyofXO2lV6GFFudaJTI,8116
|
|
309
313
|
bbot/test/test_step_2/module_tests/test_module_emailformat.py,sha256=cKxBPnEQ4AiRKV_-hSYEE6756ypst3hi6MN0L5RTukY,461
|
|
310
314
|
bbot/test/test_step_2/module_tests/test_module_emails.py,sha256=bZjtO8N3GG2_g6SUEYprAFLcsi7SlwNPJJ0nODfrWYU,944
|
|
311
315
|
bbot/test/test_step_2/module_tests/test_module_excavate.py,sha256=Myq6xkLPueT4m-Rzp8PPC_zF5vzq9JbtV8N46yAhWYE,42179
|
|
@@ -337,7 +341,7 @@ bbot/test/test_step_2/module_tests/test_module_ipneighbor.py,sha256=Bc5xaiIpleC7
|
|
|
337
341
|
bbot/test/test_step_2/module_tests/test_module_ipstack.py,sha256=BgCeE9Bef2RM6akluq0XVzr4G23kpP0Nqfydm_RoTXU,2767
|
|
338
342
|
bbot/test/test_step_2/module_tests/test_module_jadx.py,sha256=qTBfDc_Iv03n8iGdyLm6kBaKeEdSxFYeKj5xL1PmyF0,2391
|
|
339
343
|
bbot/test/test_step_2/module_tests/test_module_json.py,sha256=gmlqge5ZJpjVMGs7OLZBsNlSFTTrKnKjIZMIU23o8VQ,3350
|
|
340
|
-
bbot/test/test_step_2/module_tests/test_module_leakix.py,sha256=
|
|
344
|
+
bbot/test/test_step_2/module_tests/test_module_leakix.py,sha256=Pg1vbmi5z6xIHV1X0z0VCqfpgxksCycrJI5p2ogiIpQ,1819
|
|
341
345
|
bbot/test/test_step_2/module_tests/test_module_myssl.py,sha256=dweSmwUYEcC3DapozRSpHvvvdbw54HVlc_L2pC7ILew,1532
|
|
342
346
|
bbot/test/test_step_2/module_tests/test_module_neo4j.py,sha256=PaKSQWKJKY-5tQhDCGNu_uALlIJwjCVrEtv2grMK9wo,1332
|
|
343
347
|
bbot/test/test_step_2/module_tests/test_module_newsletters.py,sha256=4u2RghHpxlsOy859Fd-4_9EbRL9pupUDubHDJ6ym7YI,2305
|
|
@@ -348,7 +352,7 @@ bbot/test/test_step_2/module_tests/test_module_otx.py,sha256=tWkJlrdSCP2IUPGkB2R
|
|
|
348
352
|
bbot/test/test_step_2/module_tests/test_module_paramminer_cookies.py,sha256=BHbyFTh37DX7RdDQChqtbs8emCHXUTZGGq3e4UlklEA,2377
|
|
349
353
|
bbot/test/test_step_2/module_tests/test_module_paramminer_getparams.py,sha256=mWHeWQ_di3q6cMt164xaQ2hjqYkuIil8grs7-Um87PY,10083
|
|
350
354
|
bbot/test/test_step_2/module_tests/test_module_paramminer_headers.py,sha256=qTT-5fyqw69LaZBxak3FvPfH7lh9W0KVBtJgslD-3eQ,5545
|
|
351
|
-
bbot/test/test_step_2/module_tests/test_module_passivetotal.py,sha256=
|
|
355
|
+
bbot/test/test_step_2/module_tests/test_module_passivetotal.py,sha256=fTGQECQ0OzcwiH64-0igFRKO-rs3kXScivZord_oWWU,1120
|
|
352
356
|
bbot/test/test_step_2/module_tests/test_module_pgp.py,sha256=-m-nPq6WR5UzPDuxeZbuzBQfFi1QfrZQ8RZH4g11ocE,1609
|
|
353
357
|
bbot/test/test_step_2/module_tests/test_module_portscan.py,sha256=StCm93P4q3o-NhPtUDOA6g_LTH2cwzEw0l2V5ZN5eeI,7306
|
|
354
358
|
bbot/test/test_step_2/module_tests/test_module_postman.py,sha256=XvgfMgUhJuVgGkgT-JzxJyevNSVv7YvX1yLKJHmD3dw,5026
|
|
@@ -404,8 +408,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ruUQwVfia1_m2u
|
|
|
404
408
|
bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
|
|
405
409
|
bbot/wordlists/valid_url_schemes.txt,sha256=VciB-ww0y-O8Ii1wpTR6rJzGDiC2r-dhVsIJApS1ZYU,3309
|
|
406
410
|
bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
|
|
407
|
-
bbot-2.2.0.
|
|
408
|
-
bbot-2.2.0.
|
|
409
|
-
bbot-2.2.0.
|
|
410
|
-
bbot-2.2.0.
|
|
411
|
-
bbot-2.2.0.
|
|
411
|
+
bbot-2.2.0.5279rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
|
|
412
|
+
bbot-2.2.0.5279rc0.dist-info/METADATA,sha256=A-RNEyUQ3kqyCUvsELUaodqkTBlPdCI89bBdFur3R68,17109
|
|
413
|
+
bbot-2.2.0.5279rc0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
414
|
+
bbot-2.2.0.5279rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
|
|
415
|
+
bbot-2.2.0.5279rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|