bbot 2.5.0.6765rc0__py3-none-any.whl → 2.5.0.6773rc0__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.6765rc"
2
+ __version__ = "v2.5.0.6773rc"
3
3
 
4
4
  from .scanner import Scanner, Preset
5
5
 
@@ -123,7 +123,7 @@ async def run_live(self, *command, check=False, text=True, idle_timeout=None, **
123
123
  proc.send_signal(SIGINT)
124
124
  raise
125
125
  except ValueError as e:
126
- command_str = " ".join([str(c) for c in command])
126
+ command_str = " ".join(command)
127
127
  log.warning(f"Error executing command {command_str}: {e}")
128
128
  log.trace(traceback.format_exc())
129
129
  continue
@@ -185,7 +185,9 @@ async def _spawn_proc(self, *command, **kwargs):
185
185
  try:
186
186
  command, kwargs = self._prepare_command_kwargs(command, kwargs)
187
187
  except SubprocessError as e:
188
- log.warning(e)
188
+ command_str = " ".join([str(s) for s in command])
189
+ log.warning(f"Error running command: '{command_str}': {e}")
190
+ log.trace(traceback.format_exc())
189
191
  return None, None, None
190
192
  _input = kwargs.pop("input", None)
191
193
  if _input is not None:
@@ -279,6 +281,7 @@ def _prepare_command_kwargs(self, command, kwargs):
279
281
 
280
282
  if len(command) == 1 and isinstance(command[0], (list, tuple)):
281
283
  command = command[0]
284
+
282
285
  command = [str(s) for s in command]
283
286
 
284
287
  if not command:
@@ -8,6 +8,7 @@ class dnscommonsrv(subdomain_enum):
8
8
  flags = ["subdomain-enum", "active", "safe"]
9
9
  meta = {"description": "Check for common SRV records", "created_date": "2022-05-15", "author": "@TheTechromancer"}
10
10
  dedup_strategy = "lowest_parent"
11
+ deps_common = ["massdns"]
11
12
 
12
13
  options = {"max_depth": 2}
13
14
  options_desc = {"max_depth": "The maximum subdomain depth to brute-force SRV records"}
@@ -14,7 +14,7 @@ class trufflehog(BaseModule):
14
14
  }
15
15
 
16
16
  options = {
17
- "version": "3.89.1",
17
+ "version": "3.89.2",
18
18
  "config": "",
19
19
  "only_verified": True,
20
20
  "concurrency": 8,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bbot
3
- Version: 2.5.0.6765rc0
3
+ Version: 2.5.0.6773rc0
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
@@ -40,7 +40,7 @@ Requires-Dist: regex (>=2024.4.16,<2025.0.0)
40
40
  Requires-Dist: setproctitle (>=1.3.3,<2.0.0)
41
41
  Requires-Dist: socksio (>=1.0.0,<2.0.0)
42
42
  Requires-Dist: tabulate (==0.8.10)
43
- Requires-Dist: tldextract (>=5.1.1,<6.0.0)
43
+ Requires-Dist: tldextract (>=5.3.0,<6.0.0)
44
44
  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)
@@ -1,4 +1,4 @@
1
- bbot/__init__.py,sha256=FlPvmAeCzCmU4LnwoCMJUBlY6Mk29_UBVZbz2EIYJ7k,163
1
+ bbot/__init__.py,sha256=c9hHnUfE6OFx06eVmfb9G7ZLF6fblyKRe0GiHtWcCg8,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
@@ -14,7 +14,7 @@ bbot/core/helpers/__init__.py,sha256=cpOGLKIgA3vdHYqsOtx63BFO_qbtwCmez2amFPu6YTs
14
14
  bbot/core/helpers/async_helpers.py,sha256=bVHEUIOZo8iCmuovLYb3oNLPdLFUoEyc6wZIIvtELVs,4399
15
15
  bbot/core/helpers/bloom.py,sha256=gk02rO6x3F5MICa7ZUDsinRudwoGAifsbiyiMCwd0Gs,2739
16
16
  bbot/core/helpers/cache.py,sha256=1aMr3HVD45cDtHEG5xlznDUCywRgO9oRFidscrs_5sA,1537
17
- bbot/core/helpers/command.py,sha256=UBJa2RInEJtGjZ5e24PUQxPu1aTCIFkcCrrB0ERLdGI,12810
17
+ bbot/core/helpers/command.py,sha256=ZiLp71iEEcnnHLkvyD_TVeBKl9Uz9PGpTcpl9EHLCgQ,12938
18
18
  bbot/core/helpers/depsinstaller/__init__.py,sha256=C2jF_ymSPIO68F649csYQql37ppPfUjFc8eq8LhgDkQ,66
19
19
  bbot/core/helpers/depsinstaller/installer.py,sha256=i5FPcASDV4OPTUAT_txnbj2mmLr4z7-sigDPNiMUjWo,19816
20
20
  bbot/core/helpers/depsinstaller/sudo_askpass.py,sha256=yGa2OQv30RO75QkMuG1iruKqb7amQxRVRRcHmvIeGhk,1276
@@ -90,7 +90,7 @@ bbot/modules/dnsbimi.py,sha256=A4cqhvhytmEEd-tY4CgFwMLbsVtMjkRY9238Aj8aVtU,6921
90
90
  bbot/modules/dnsbrute.py,sha256=Y2bSbG2IcwIJID1FSQ6Qe9fdpWwG7GIO-wVQw7MdQFM,2439
91
91
  bbot/modules/dnsbrute_mutations.py,sha256=EbAZ-ZOqk98OAMacc8PuX_zx6eXyn6gJxgFuZ8A71YA,7242
92
92
  bbot/modules/dnscaa.py,sha256=pyaLqHrdsVhqtd1JBZVjKKcuYT_ywUbFYkrnfXcGD5s,5014
93
- bbot/modules/dnscommonsrv.py,sha256=gEErfSur7Odkaif4CbXYx3OZ3FQrQESyiMGPbcDKSIg,1538
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
96
  bbot/modules/docker_pull.py,sha256=3Ui5z3pNfZDgX8q25h-LwKvUM7FDPST2dz1vk_I8gDc,9192
@@ -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=ssboOEEfS26FNB1VoavNH840ewq4rWm58wbm6S1aWp0,8702
210
+ bbot/modules/trufflehog.py,sha256=enAUd8Qe8UHsMTYMFje6jc6HKEi-WK1kva4t0KP4VZ8,8702
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
@@ -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.6765rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
455
- bbot-2.5.0.6765rc0.dist-info/METADATA,sha256=TE4UX4SAN8on8fP6_s0fl0zErdTm1Nsr9lcajwTe8l8,18308
456
- bbot-2.5.0.6765rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
457
- bbot-2.5.0.6765rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
458
- bbot-2.5.0.6765rc0.dist-info/RECORD,,
454
+ bbot-2.5.0.6773rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
455
+ bbot-2.5.0.6773rc0.dist-info/METADATA,sha256=d_zjvkkWLcF25aEuo1kZA0d_bBsbzZVR15KzIzqTXfI,18308
456
+ bbot-2.5.0.6773rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
457
+ bbot-2.5.0.6773rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
458
+ bbot-2.5.0.6773rc0.dist-info/RECORD,,