bbot 2.5.0.6779rc0__py3-none-any.whl → 2.5.0.6790rc0__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 CHANGED
@@ -1,5 +1,5 @@
1
1
  # version placeholder (replaced by poetry-dynamic-versioning)
2
- __version__ = "v2.5.0.6779rc"
2
+ __version__ = "v2.5.0.6790rc"
3
3
 
4
4
  from .scanner import Scanner, Preset
5
5
 
@@ -32,6 +32,20 @@ class DepsInstaller:
32
32
  "bash": "bash",
33
33
  "which": "which",
34
34
  "tar": "tar",
35
+ "xz": [
36
+ {
37
+ "name": "Install xz-utils (Debian)",
38
+ "package": {"name": ["xz-utils"], "state": "present"},
39
+ "become": True,
40
+ "when": "ansible_facts['os_family'] == 'Debian'",
41
+ },
42
+ {
43
+ "name": "Install xz (Non-Debian)",
44
+ "package": {"name": ["xz"], "state": "present"},
45
+ "become": True,
46
+ "when": "ansible_facts['os_family'] != 'Debian'",
47
+ },
48
+ ],
35
49
  # debian why are you like this
36
50
  "7z": [
37
51
  {
@@ -53,6 +67,44 @@ class DepsInstaller:
53
67
  "when": "ansible_facts['distribution'] == 'Fedora'",
54
68
  },
55
69
  ],
70
+ # to compile just about any tool, we need the openssl dev headers
71
+ "openssl": [
72
+ {
73
+ "name": "Install OpenSSL library and development headers (Debian/Ubuntu)",
74
+ "package": {"name": ["libssl-dev", "openssl"], "state": "present"},
75
+ "become": True,
76
+ "when": "ansible_facts['os_family'] == 'Debian'",
77
+ "ignore_errors": True,
78
+ },
79
+ {
80
+ "name": "Install OpenSSL library and development headers (RedHat/CentOS/Fedora)",
81
+ "package": {"name": ["openssl", "openssl-devel"], "state": "present"},
82
+ "become": True,
83
+ "when": "ansible_facts['os_family'] == 'RedHat' or ansible_facts['os_family'] == 'Suse' ",
84
+ "ignore_errors": True,
85
+ },
86
+ {
87
+ "name": "Install OpenSSL library and development headers (Arch)",
88
+ "package": {"name": ["openssl"], "state": "present"},
89
+ "become": True,
90
+ "when": "ansible_facts['os_family'] == 'Archlinux'",
91
+ "ignore_errors": True,
92
+ },
93
+ {
94
+ "name": "Install OpenSSL library and development headers (Alpine)",
95
+ "package": {"name": ["openssl", "openssl-dev"], "state": "present"},
96
+ "become": True,
97
+ "when": "ansible_facts['os_family'] == 'Alpine'",
98
+ "ignore_errors": True,
99
+ },
100
+ {
101
+ "name": "Install OpenSSL library and development headers (FreeBSD)",
102
+ "package": {"name": ["openssl"], "state": "present"},
103
+ "become": True,
104
+ "when": "ansible_facts['os_family'] == 'FreeBSD'",
105
+ "ignore_errors": True,
106
+ },
107
+ ],
56
108
  }
57
109
 
58
110
  def __init__(self, parent_helper):
bbot/core/helpers/misc.py CHANGED
@@ -831,7 +831,9 @@ def rand_string(length=10, digits=True, numeric_only=False):
831
831
  return "".join(random.choice(pool) for _ in range(length))
832
832
 
833
833
 
834
- def truncate_string(s, n):
834
+ def truncate_string(s: str, n: int) -> str:
835
+ if not isinstance(s, str):
836
+ raise ValueError(f"Expected string, got {type(s)}")
835
837
  if len(s) > n:
836
838
  return s[: n - 3] + "..."
837
839
  else:
@@ -208,7 +208,7 @@ class HTTPEngine(EngineServer):
208
208
  raise
209
209
  else:
210
210
  log.warning(
211
- f"Invalid URL (possibly due to dangerous redirect) on request to : {url}: {truncate_string(e, 200)}"
211
+ f"Invalid URL (possibly due to dangerous redirect) on request to : {url}: {truncate_string(str(e), 200)}"
212
212
  )
213
213
  log.trace(traceback.format_exc())
214
214
  except ssl.SSLError as e:
bbot/modules/apkpure.py CHANGED
@@ -22,7 +22,7 @@ class apkpure(BaseModule):
22
22
  if output_folder:
23
23
  self.output_dir = Path(output_folder) / "apk_files"
24
24
  else:
25
- self.output_dir = self.helpers.temp_dir / "apk_files"
25
+ self.output_dir = self.scan.temp_dir / "apk_files"
26
26
  self.helpers.mkdir(self.output_dir)
27
27
  return await super().setup()
28
28
 
@@ -38,7 +38,7 @@ class docker_pull(BaseModule):
38
38
  if output_folder:
39
39
  self.output_dir = Path(output_folder) / "docker_images"
40
40
  else:
41
- self.output_dir = self.helpers.temp_dir / "docker_images"
41
+ self.output_dir = self.scan.temp_dir / "docker_images"
42
42
  self.helpers.mkdir(self.output_dir)
43
43
  return await super().setup()
44
44
 
@@ -103,7 +103,7 @@ class filedownload(BaseModule):
103
103
  if output_dir:
104
104
  self.download_dir = Path(output_dir) / "filedownload"
105
105
  else:
106
- self.download_dir = self.helpers.temp_dir / "filedownload"
106
+ self.download_dir = self.scan.temp_dir / "filedownload"
107
107
  self.helpers.mkdir(self.download_dir)
108
108
  self.mime_db_file = await self.helpers.wordlist(
109
109
  "https://raw.githubusercontent.com/jshttp/mime-db/master/db.json"
bbot/modules/git_clone.py CHANGED
@@ -27,7 +27,7 @@ class git_clone(github):
27
27
  if output_folder:
28
28
  self.output_dir = Path(output_folder) / "git_repos"
29
29
  else:
30
- self.output_dir = self.helpers.temp_dir / "git_repos"
30
+ self.output_dir = self.scan.temp_dir / "git_repos"
31
31
  self.helpers.mkdir(self.output_dir)
32
32
  return await super().setup()
33
33
 
bbot/modules/gitdumper.py CHANGED
@@ -33,7 +33,7 @@ class gitdumper(BaseModule):
33
33
  if output_folder:
34
34
  self.output_dir = Path(output_folder) / "git_repos"
35
35
  else:
36
- self.output_dir = self.helpers.temp_dir / "git_repos"
36
+ self.output_dir = self.scan.temp_dir / "git_repos"
37
37
  self.helpers.mkdir(self.output_dir)
38
38
  self.unsafe_regex = self.helpers.re.compile(r"^\s*fsmonitor|sshcommand|askpass|editor|pager", re.IGNORECASE)
39
39
  self.ref_regex = self.helpers.re.compile(r"ref: refs/heads/([a-zA-Z\d_-]+)")
bbot/modules/nuclei.py CHANGED
@@ -282,7 +282,7 @@ class nuclei(BaseModule):
282
282
  else:
283
283
  self.debug("Nuclei result missing one or more required elements, not reporting. JSON: ({j})")
284
284
  finally:
285
- stats_file.unlink()
285
+ stats_file.unlink(missing_ok=True)
286
286
 
287
287
  def log_nuclei_status(self, line):
288
288
  if self.silent:
bbot/modules/portscan.py CHANGED
@@ -144,7 +144,7 @@ class portscan(BaseModule):
144
144
  emitted_hosts.add(host)
145
145
  finally:
146
146
  for file in (stats_file, target_file):
147
- file.unlink()
147
+ file.unlink(missing_ok=True)
148
148
 
149
149
  async def make_targets(self, events, scanned_tracker):
150
150
  """
@@ -25,7 +25,7 @@ class postman_download(postman):
25
25
  if output_folder:
26
26
  self.output_dir = Path(output_folder) / "postman_workspaces"
27
27
  else:
28
- self.output_dir = self.helpers.temp_dir / "postman_workspaces"
28
+ self.output_dir = self.scan.temp_dir / "postman_workspaces"
29
29
  self.helpers.mkdir(self.output_dir)
30
30
  return await super().setup()
31
31
 
@@ -198,7 +198,7 @@ class trufflehog(BaseModule):
198
198
 
199
199
  yield (decoder_name, detector_name, raw_result, rawv2_result, verified, source_metadata)
200
200
  finally:
201
- stats_file.unlink()
201
+ stats_file.unlink(missing_ok=True)
202
202
 
203
203
  def log_trufflehog_status(self, path, line):
204
204
  try:
bbot/scanner/scanner.py CHANGED
@@ -175,6 +175,10 @@ class Scanner:
175
175
  else:
176
176
  self.home = self.preset.bbot_home / "scans" / self.name
177
177
 
178
+ # scan temp dir
179
+ self.temp_dir = self.home / "temp"
180
+ self.helpers.mkdir(self.temp_dir)
181
+
178
182
  self._status = "NOT_STARTED"
179
183
  self._status_code = 0
180
184
 
@@ -884,7 +888,7 @@ class Scanner:
884
888
  await mod._cleanup()
885
889
  with contextlib.suppress(Exception):
886
890
  self.home.rmdir()
887
- self.helpers.rm_rf(self.helpers.temp_dir, ignore_errors=True)
891
+ self.helpers.rm_rf(self.temp_dir, ignore_errors=True)
888
892
  self.helpers.clean_old_scans()
889
893
 
890
894
  def in_scope(self, *args, **kwargs):
@@ -963,11 +963,13 @@ async def test_rm_temp_dir_at_exit(helpers):
963
963
  scan = Scanner("127.0.0.1", modules=["httpx"])
964
964
  await scan._prep()
965
965
 
966
+ temp_dir = scan.home / "temp"
967
+
966
968
  # temp dir should exist
967
- assert scan.helpers.temp_dir.exists()
969
+ assert temp_dir.exists()
968
970
 
969
971
  events = [e async for e in scan.async_start()]
970
972
  assert events
971
973
 
972
974
  # temp dir should be removed
973
- assert not scan.helpers.temp_dir.exists()
975
+ assert not temp_dir.exists()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bbot
3
- Version: 2.5.0.6779rc0
3
+ Version: 2.5.0.6790rc0
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
@@ -1,4 +1,4 @@
1
- bbot/__init__.py,sha256=EBJo1jw4Msy3cWawcW9rkZgjsztwu87OuRwXTjvnkQo,163
1
+ bbot/__init__.py,sha256=eeeMm8A02JCgtw8Y3LIUP8V1-N0OyiK-EWMPsXQRovY,163
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
@@ -16,7 +16,7 @@ bbot/core/helpers/bloom.py,sha256=gk02rO6x3F5MICa7ZUDsinRudwoGAifsbiyiMCwd0Gs,27
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
19
- bbot/core/helpers/depsinstaller/installer.py,sha256=i5FPcASDV4OPTUAT_txnbj2mmLr4z7-sigDPNiMUjWo,19816
19
+ bbot/core/helpers/depsinstaller/installer.py,sha256=eos-Q9KUPHQRUU8iRiT5pVJccuHaLouMxxFvjPgR_1s,22154
20
20
  bbot/core/helpers/depsinstaller/sudo_askpass.py,sha256=yGa2OQv30RO75QkMuG1iruKqb7amQxRVRRcHmvIeGhk,1276
21
21
  bbot/core/helpers/diff.py,sha256=X9MnHfz3IjWhD2grYTHzVPYoiWI9ZqjJul2Bp_BRGcE,10841
22
22
  bbot/core/helpers/dns/__init__.py,sha256=SboBeh4o81Xd4mAKhV10QzoRPDH4g28xC5PZVqVmJ28,35
@@ -29,7 +29,7 @@ bbot/core/helpers/files.py,sha256=9tVr3973QvX8l6o3TweD5_MCZiQpuJVffbzW0U7Z30U,57
29
29
  bbot/core/helpers/helper.py,sha256=u-q_Ka9pY1atvC-FChxYpURM7b3_0gaCNIHSG__Wi74,8538
30
30
  bbot/core/helpers/interactsh.py,sha256=VBYYH6-rWBofRsgemndK6iZNmyifOps8vgQOw2mac4k,12624
31
31
  bbot/core/helpers/libmagic.py,sha256=QMHyxjgDLb2jyjBvK1MQ-xt6WkGXhKcHu9ZP1li-sik,3460
32
- bbot/core/helpers/misc.py,sha256=sZCcmGcM1GuvPBHATV9kts2x4hL--UzLKhf1EmGAh64,88807
32
+ bbot/core/helpers/misc.py,sha256=1bib2ECQdPuw8aylGH0x616Nv6yDthjycApGUsyuyI8,88915
33
33
  bbot/core/helpers/names_generator.py,sha256=zmo4MyuOnAYjiUDiORhq9T9bHmA_gW72Y2kHMAqVENU,10594
34
34
  bbot/core/helpers/ntlm.py,sha256=P2Xj4-GPos2iAzw4dfk0FJp6oGyycGhu2x6sLDVjYjs,2573
35
35
  bbot/core/helpers/process.py,sha256=00uRpLMFi3Pt3uT8qXwAIhsXdoa7h-ifoXh0sGYgwqs,1702
@@ -40,7 +40,7 @@ bbot/core/helpers/url.py,sha256=eunp4PNNulhitjDpl9tXJkgbTmLgGXmPaGAEaExRqTY,6352
40
40
  bbot/core/helpers/validators.py,sha256=-WBYvjlwi5SsVtn_LankKGI8vaBza2NqvM1lGbVmiN4,9711
41
41
  bbot/core/helpers/web/__init__.py,sha256=tSDInpfUIj9Gi0m4Icwbrx21uc6Jj1-keE7SIfO9g20,35
42
42
  bbot/core/helpers/web/client.py,sha256=RPm4kYdHzqPom0EdVFvAiUPuDpztW8cuqGaLfl2Txd0,4082
43
- bbot/core/helpers/web/engine.py,sha256=fxzPn_czr3wriRAlTHQ8hd46wUEAgiQgKEjgU1cc3RI,9216
43
+ bbot/core/helpers/web/engine.py,sha256=XmyDMXsJWasOklfPWOcJ6SzuLaUXP3HGJUBO5Gj2xFk,9221
44
44
  bbot/core/helpers/web/envelopes.py,sha256=mMmr4QGi28KJSwCkaogMGYhiqeqm3_kO9KziLtEKefc,10074
45
45
  bbot/core/helpers/web/ssl_context.py,sha256=aWVgl-d0HoE8B4EBKNxaa5UAzQmx79DjDByfBw9tezo,356
46
46
  bbot/core/helpers/web/web.py,sha256=q9X6JNufbZzRijzsc6bXkxH0ntly7rDr-uptscSKxRo,24042
@@ -56,7 +56,7 @@ bbot/logger.py,sha256=wE-532v5FyKuSSoTdyW1xSfaOnLZB1axAJnB-uW2xrI,2745
56
56
  bbot/modules/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
57
57
  bbot/modules/ajaxpro.py,sha256=daE1yQoCsSI5c4dh3YKwRSggTISNjWgrK7qTPidk7cU,3764
58
58
  bbot/modules/anubisdb.py,sha256=JCy2YCfa0e_VawpzNmcPXAosKUthmYGutireJ0gMDws,1916
59
- bbot/modules/apkpure.py,sha256=a_VRujUOIk7SVWyI9-N-nJVqfMApciIRdXVc-y_Ebuw,2558
59
+ bbot/modules/apkpure.py,sha256=h26zh-nv1G9IvvTwywbFcARiZPfHUhjIUGVl0Achbek,2555
60
60
  bbot/modules/aspnet_bin_exposure.py,sha256=X16mK8tff7-LOcbS4fUschkDRdVVz9r2N8Ta2EZzw2Y,3737
61
61
  bbot/modules/azure_realm.py,sha256=pP2PUlLy0K9KKaE8aNcznWjDW3PKHvnMejdOSc-o4ms,1612
62
62
  bbot/modules/azure_tenant.py,sha256=qBn7CUA_hth2PqW55XZVjYxIw20xLYrMntXc6mYpmKU,5366
@@ -93,20 +93,20 @@ bbot/modules/dnscaa.py,sha256=pyaLqHrdsVhqtd1JBZVjKKcuYT_ywUbFYkrnfXcGD5s,5014
93
93
  bbot/modules/dnscommonsrv.py,sha256=wrCRTlqVuxFIScWH0Cb0UQAVk0TWxgVc5fo5awl3R24,1568
94
94
  bbot/modules/dnsdumpster.py,sha256=bqUqyvRJVtoTXbDxTZ-kgPNq4dCE9xv_msBIn_Nj5IM,3251
95
95
  bbot/modules/dnstlsrpt.py,sha256=ntNKVDXDgDVWr1A20ShNT5HFBhXsVEM5aUIEU_0c9HU,6427
96
- bbot/modules/docker_pull.py,sha256=3Ui5z3pNfZDgX8q25h-LwKvUM7FDPST2dz1vk_I8gDc,9192
96
+ bbot/modules/docker_pull.py,sha256=zNQcQdS-JWM2-TbQ_iyjeGA9CKcpuXdeO5ucoJgzZNY,9189
97
97
  bbot/modules/dockerhub.py,sha256=JQkujjqvQRzQuvHjQ7JbFs_VlJj8dLRPRObAkBgUQhc,3493
98
98
  bbot/modules/dotnetnuke.py,sha256=zipcHyNYr2FEecStb1Yrm938ps01RvHV8NnyqAvnGGc,10537
99
99
  bbot/modules/emailformat.py,sha256=RLPJW-xitYB-VT4Lp08qVzFkXx_kMyV_035JT_Yf4fM,1082
100
100
  bbot/modules/extractous.py,sha256=VSGKmHPAA_4r62jaN8Yqi3JcjehjxpI2lhe8i2j786s,4648
101
101
  bbot/modules/ffuf.py,sha256=94TJ5xvqKwH0JaWmC_t1dLTpRsO8HEy4lnbsu8LF_HY,14965
102
102
  bbot/modules/ffuf_shortnames.py,sha256=y5vnypLPN-KrjpmoG5zlqcX8VwfcLBpNg1yQI7bP9Hg,18737
103
- bbot/modules/filedownload.py,sha256=ZQZQCkXYb0lUP4DnEfL__8vc9KRi0m9hfBhClTKwy2U,8906
103
+ bbot/modules/filedownload.py,sha256=5MctNWSYyjoXPshRXbltsn92KDAr9fsLqbPGP4eK7Es,8903
104
104
  bbot/modules/fingerprintx.py,sha256=rdlR9d64AntAhbS_eJzh8bZCeLPTJPSKdkdKdhH_qAo,3269
105
105
  bbot/modules/fullhunt.py,sha256=2ntu1yBh51N4e_l-kpXc1UBoVVcxEE2JPkyaMYCuUb4,1336
106
106
  bbot/modules/generic_ssrf.py,sha256=KFdcHpUV9-Z7oN7emzbirimsNc2xZ_1IFqnsfIkEbcM,9196
107
107
  bbot/modules/git.py,sha256=zmHeI0bn181T1P8C55HSebkdVGLTpzGxPc-LRqiHrbc,1723
108
- bbot/modules/git_clone.py,sha256=w-s3O6rZL_I8_BuPKotnAzXKnn7saw159jcQ_R1xtKw,2602
109
- bbot/modules/gitdumper.py,sha256=d2FnSAraWftkQ9ENmkBk3_kUbuw4G3eKpsi0FXLzBss,12042
108
+ bbot/modules/git_clone.py,sha256=AaiETlAtgY8gbAyvv4FrOBYa06L3WNvyc89ith5um2k,2599
109
+ bbot/modules/gitdumper.py,sha256=giwXMPlmgC1gxyZKTGlF-0xplt4MBbDiXi07-ghH02o,12039
110
110
  bbot/modules/github_codesearch.py,sha256=a-r2vE9N9WyBpFUiKCsg0TK4Qn7DaEGyVRTUKzkDLWA,3641
111
111
  bbot/modules/github_org.py,sha256=WM18vJCHuOHJJ5rPzQzQ3Pmp7XPPuaMeVgNfW-FlO0k,8938
112
112
  bbot/modules/github_usersearch.py,sha256=G8knkQBJsn7EKcMhcEaFPiB_Y5S96e2VaseBubsqOyk,3407
@@ -146,7 +146,7 @@ bbot/modules/lightfuzz/submodules/xss.py,sha256=BZz1_nqzV8dqJptpoqZEMdVBdtZHmRae
146
146
  bbot/modules/myssl.py,sha256=DoMF7o6MxIrcglCrC-W3nM-GPcyJRM4PlGdKfnOlIvs,942
147
147
  bbot/modules/newsletters.py,sha256=1Q4JjShPsxHJ-by2CbGfCvEt80blUGPX0hxQIzB_a9M,2630
148
148
  bbot/modules/ntlm.py,sha256=EGmb4k3YC_ZuHIU3mGUZ4yaMjE35wVQQSv8HwTsQJzY,4391
149
- bbot/modules/nuclei.py,sha256=65-tgre6a738Z2s3Bo0nxhNcvQ1OuYX8zQS5x7fFk7g,17983
149
+ bbot/modules/nuclei.py,sha256=JctCgRxDafOfbGMtraryU5_B1YbQxMi73w1skqSgVz4,17998
150
150
  bbot/modules/oauth.py,sha256=s-Q6PYJl1OLncGgHzCV0QAzbkewT5zzKCRaa8GidBqc,6720
151
151
  bbot/modules/otx.py,sha256=GYi5GFLKlKuRHPYMqtq42bSulerkSpAWHM6ex5eK7ww,913
152
152
  bbot/modules/output/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -178,9 +178,9 @@ bbot/modules/paramminer_headers.py,sha256=GMErLmTO0w7JRIpJE2VFvRTrjmoux_-jTx3Efa
178
178
  bbot/modules/passivetotal.py,sha256=dHYk9QWIKdO6Z8Bip4IdcButiqy_fr4FrpRUQaiH1a0,1678
179
179
  bbot/modules/pgp.py,sha256=Xu2M9WEIlwTm5-Lv29g7BblI05tD9Dl0XsYSeY6UURs,2065
180
180
  bbot/modules/portfilter.py,sha256=3iu4xqCsHafhVMbA32Mw6K_7Yn576Rz6GxXMevZQEpM,1752
181
- bbot/modules/portscan.py,sha256=dmR2H3Wag6vLLIXrwyU_7bvYuLIv3zdJZ2japogwFUU,13076
181
+ bbot/modules/portscan.py,sha256=emhNhnFYBVMnVm7IZKmzHJRCKRwVpF3S9dtOV6H9iYA,13091
182
182
  bbot/modules/postman.py,sha256=vo761Nzu3kPBzfCY3KJcvsGEsjImaa7iA2z-LyASBDc,4589
183
- bbot/modules/postman_download.py,sha256=4pvF1ePRqxPxXL1jhI0gMf1CasfVFl-xjwU-U22SFXA,3607
183
+ bbot/modules/postman_download.py,sha256=OXC4hHInwD2Ps-BURc2uM_Z7PCl95KPdcxSI34Vzdcc,3604
184
184
  bbot/modules/rapiddns.py,sha256=uONESr0B5pv9cSAr7lF4WWV31APUhXyHexvI04rUcyk,787
185
185
  bbot/modules/reflected_parameters.py,sha256=RjS-4C-XC9U-jC9J7AYNqwn6I-O2y3LvTRhB68dpgKI,3281
186
186
  bbot/modules/report/affiliates.py,sha256=vvus8LylqOfP-lfGid0z4FS6MwOpNuRTcSJ9aSnybp4,1713
@@ -207,7 +207,7 @@ bbot/modules/templates/sql.py,sha256=o-CdyyoJvHJdJBKkj3CIGXYxUta4w2AB_2Vr-k7cDDU
207
207
  bbot/modules/templates/subdomain_enum.py,sha256=epyKSly08jqaINV_AMMWbNafIeQjJqvd3aj63KD0Mck,8402
208
208
  bbot/modules/templates/webhook.py,sha256=uGFmcJ81GzGN1UI2k2O7nQF_fyh4ehLDEg2NSXaPnhk,3373
209
209
  bbot/modules/trickest.py,sha256=MRgLW0YiDWzlWdAjyqfPPLFb-a51r-Ffn_dphiJI_gA,1550
210
- bbot/modules/trufflehog.py,sha256=enAUd8Qe8UHsMTYMFje6jc6HKEi-WK1kva4t0KP4VZ8,8702
210
+ bbot/modules/trufflehog.py,sha256=e8M0HvDRImwvokeCPE-TnJGRXgAn1W4asu_BMST13Ik,8717
211
211
  bbot/modules/url_manipulation.py,sha256=4J3oFkqTSJPPmbKEKAHJg2Q2w4QNKtQhiN03ZJq5VtI,4326
212
212
  bbot/modules/urlscan.py,sha256=-w_3Bm6smyG2GLQyIbnMUkKmeQVauo-V6F4_kJDYG7s,3740
213
213
  bbot/modules/vhost.py,sha256=cirOe0HR4M0TEBN8JdXo2l0s2flc8ZSdxggGm79blT8,5459
@@ -254,7 +254,7 @@ bbot/scanner/preset/conditions.py,sha256=hFL9cSIWGEsv2TfM5UGurf0c91cyaM8egb5IngB
254
254
  bbot/scanner/preset/environ.py,sha256=9KbEOLWkUdoAf5Ez_2A1NNm6QduQElbnNnrPi6VDhZs,4731
255
255
  bbot/scanner/preset/path.py,sha256=X32-ZUmL7taIv37VKF1KfmeiK9fjuQOE7pWUTEbPK8c,2483
256
256
  bbot/scanner/preset/preset.py,sha256=G_aMMI33d2OlzNUwjfi5ddJdxa8nK0oF5HrYAsuregU,40708
257
- bbot/scanner/scanner.py,sha256=mjLXAoe9_z1DKDISqBV3lU2fOJ_RzjuJtVnAylN_G1w,55394
257
+ bbot/scanner/scanner.py,sha256=DABrkH1YApAOYYB3bGAV46oLV47yRk95VKcGp5fEOF0,55496
258
258
  bbot/scanner/stats.py,sha256=re93sArKXZSiD0Owgqk2J3Kdvfm3RL4Y9Qy_VOcaVk8,3623
259
259
  bbot/scanner/target.py,sha256=lI0Tn5prQiPiJE3WW-ZLx_l6EFqzAVabtyL-nfXJ8cE,10636
260
260
  bbot/scripts/docs.py,sha256=aYAHlcHtMAhM-XGTDiSpzccnX1dh0Xi_WxmC2bgylQ4,11373
@@ -281,7 +281,7 @@ bbot/test/test_step_1/test_engine.py,sha256=3HkCPtYhUxiZzfA-BRHpLsyaRj9wIXKbb49B
281
281
  bbot/test/test_step_1/test_event_seeds.py,sha256=s_0BRqkahX4MYYqkmPqgcCsFrMbiXdTfLuKqNU2jkEU,6652
282
282
  bbot/test/test_step_1/test_events.py,sha256=Evm_rw5Y6W3H6eAGTlNcSWGALVo9PpKi_Rs80trPuXE,54312
283
283
  bbot/test/test_step_1/test_files.py,sha256=5Q_3jPpMXULxDHsanSDUaj8zF8bXzKdiJZHOmoYpLhQ,699
284
- bbot/test/test_step_1/test_helpers.py,sha256=0t8G4ljmBouJL1TH46MU_xgF3w31KzaCNIFJk4xsJKY,40194
284
+ bbot/test/test_step_1/test_helpers.py,sha256=RoX7wQiQ2zoIF4z1NprdilMAQTBKzg47jtO010tK53o,40203
285
285
  bbot/test/test_step_1/test_manager_deduplication.py,sha256=hZQpDXzg6zvzxFolVOcJuY-ME8NXjZUsqS70BRNXp8A,15594
286
286
  bbot/test/test_step_1/test_manager_scope_accuracy.py,sha256=JV1bQHt9EIM0GmGS4T4Brz_L2lfcwTxtNC06cfv7r64,79763
287
287
  bbot/test/test_step_1/test_modules_basic.py,sha256=ELpGlsthSq8HaxB5My8-ESVHqMxqdL5Of0STMIyaWzA,20001
@@ -451,8 +451,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ZSIVebs7ptMvHx
451
451
  bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
452
452
  bbot/wordlists/valid_url_schemes.txt,sha256=0B_VAr9Dv7aYhwi6JSBDU-3M76vNtzN0qEC_RNLo7HE,3310
453
453
  bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
454
- bbot-2.5.0.6779rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
455
- bbot-2.5.0.6779rc0.dist-info/METADATA,sha256=Hmyrv_kUoI81wn8CPvEtMHsTC7PFk_okWz_WombewCA,18308
456
- bbot-2.5.0.6779rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
457
- bbot-2.5.0.6779rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
458
- bbot-2.5.0.6779rc0.dist-info/RECORD,,
454
+ bbot-2.5.0.6790rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
455
+ bbot-2.5.0.6790rc0.dist-info/METADATA,sha256=NEVTJu_6hgKq-HwhDk78Vgf-WP-HSmYYiB2GaMrPcxc,18308
456
+ bbot-2.5.0.6790rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
457
+ bbot-2.5.0.6790rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
458
+ bbot-2.5.0.6790rc0.dist-info/RECORD,,