bbot 2.6.0.6853rc0__py3-none-any.whl → 2.6.0.6856rc0__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.6.0.6853rc"
2
+ __version__ = "v2.6.0.6856rc"
3
3
 
4
4
  from .scanner import Scanner, Preset
5
5
 
bbot/modules/baddns.py CHANGED
@@ -22,7 +22,7 @@ class baddns(BaseModule):
22
22
  "enabled_submodules": "A list of submodules to enable. Empty list (default) enables CNAME, TXT and MX Only",
23
23
  }
24
24
  module_threads = 8
25
- deps_pip = ["baddns~=1.9.130"]
25
+ deps_pip = ["baddns~=1.10.185"]
26
26
 
27
27
  def select_modules(self):
28
28
  selected_submodules = []
@@ -19,7 +19,7 @@ class baddns_direct(BaseModule):
19
19
  "custom_nameservers": "Force BadDNS to use a list of custom nameservers",
20
20
  }
21
21
  module_threads = 8
22
- deps_pip = ["baddns~=1.9.130"]
22
+ deps_pip = ["baddns~=1.10.185"]
23
23
 
24
24
  scope_distance_modifier = 1
25
25
 
@@ -16,7 +16,7 @@ class baddns_zone(baddns_module):
16
16
  "only_high_confidence": "Do not emit low-confidence or generic detections",
17
17
  }
18
18
  module_threads = 8
19
- deps_pip = ["baddns~=1.9.130"]
19
+ deps_pip = ["baddns~=1.10.185"]
20
20
 
21
21
  def set_modules(self):
22
22
  self.enabled_submodules = ["NSEC", "zonetransfer"]
@@ -17,7 +17,7 @@ class badsecrets(BaseModule):
17
17
  options_desc = {
18
18
  "custom_secrets": "Include custom secrets loaded from a local file",
19
19
  }
20
- deps_pip = ["badsecrets~=0.9.29"]
20
+ deps_pip = ["badsecrets~=0.12.12"]
21
21
 
22
22
  async def setup(self):
23
23
  self.custom_secrets = None
bbot/modules/telerik.py CHANGED
@@ -161,7 +161,7 @@ class telerik(BaseModule):
161
161
 
162
162
  in_scope_only = True
163
163
 
164
- deps_pip = ["pycryptodome~=3.17"]
164
+ deps_pip = ["pycryptodome~=3.23.0"]
165
165
 
166
166
  deps_ansible = [
167
167
  {"name": "Create telerik dir", "file": {"state": "directory", "path": "#{BBOT_TOOLS}/telerik/"}},
bbot/modules/wafw00f.py CHANGED
@@ -22,7 +22,7 @@ class wafw00f(BaseModule):
22
22
  "author": "@liquidsec",
23
23
  }
24
24
 
25
- deps_pip = ["wafw00f~=2.2.0"]
25
+ deps_pip = ["wafw00f~=2.3.1"]
26
26
 
27
27
  options = {"generic_detect": True}
28
28
  options_desc = {"generic_detect": "When no specific WAF detections are made, try to perform a generic detect"}
@@ -42,7 +42,7 @@ class wafw00f(BaseModule):
42
42
  async def handle_event(self, event):
43
43
  url = f"{event.parsed_url.scheme}://{event.parsed_url.netloc}/"
44
44
  WW = await self.helpers.run_in_executor(wafw00f_main.WAFW00F, url, followredirect=False)
45
- waf_detections = await self.helpers.run_in_executor(WW.identwaf)
45
+ waf_detections, url = await self.helpers.run_in_executor(WW.identwaf)
46
46
  if waf_detections:
47
47
  for waf in waf_detections:
48
48
  await self.emit_event(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bbot
3
- Version: 2.6.0.6853rc0
3
+ Version: 2.6.0.6856rc0
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=zvdxzHNznNUsLA_yBWgVI_AsChjWhiB5d3-fg2ODjic,163
1
+ bbot/__init__.py,sha256=o-b4P_7LI1NPD0_Y6JpdYZ3zLkdrqs5vxGWG8lQWqoE,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
@@ -60,10 +60,10 @@ 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
63
- bbot/modules/baddns.py,sha256=ubO3KDfcIMJnMjyZX5FWZ4GWxLSekV_JQV7QvsPjtD0,6693
64
- bbot/modules/baddns_direct.py,sha256=hWThpkXP87nnCRTlUh5qBJ1t4eo4l9kUmKNNxVNJI8A,3819
65
- bbot/modules/baddns_zone.py,sha256=y1XaBUfFPnRbR2qaTqRyUsPgEL73722v2B8aS5YoGN4,1035
66
- bbot/modules/badsecrets.py,sha256=LG37p48Rlxsfc3BmACMpkypsbuFTVvXqNhlP1IEsx0k,5109
63
+ bbot/modules/baddns.py,sha256=vSWWBiPfVowAg1yrBAx0rm8ViSh1O3VX7nI9Pn2Z5mo,6694
64
+ bbot/modules/baddns_direct.py,sha256=G5WTKQ-jKJnSLijsOjyQKoR2Sx49fvACBvAC-b_yPck,3820
65
+ bbot/modules/baddns_zone.py,sha256=8s2vIbU2MsLW6w12bDyw8FWBfdDRn2A2gWoMFEX4gPw,1036
66
+ bbot/modules/badsecrets.py,sha256=2M515_nmDg24WTDqM01w-2DNN2H8BewvqnG_8hG6n3o,5110
67
67
  bbot/modules/base.py,sha256=EtFx7IUV-tBXlVt0UxwsmJRCaef20rp4yyWO6ko-KR0,78473
68
68
  bbot/modules/bevigil.py,sha256=0VLIxmeXRUI2-EoR6IzuHJMcX8KCHNNta-WYa3gVlDg,2862
69
69
  bbot/modules/bucket_amazon.py,sha256=mwjYeEAcdfOpjbOa1sD8U9KBMMVY_c8FoHjSGR9GQbg,730
@@ -199,7 +199,7 @@ bbot/modules/social.py,sha256=SaXC8gK69k9aMNHS9y7b-Ag-w7U7DbeXqrZRx9CtXLw,2499
199
199
  bbot/modules/sslcert.py,sha256=83rf_rzlj4iku3gldx1_R1L_v3ZCGItGPay8JviUy9w,8211
200
200
  bbot/modules/subdomaincenter.py,sha256=aWjcIqGGWnAj2ePwcS4sgUJDUsq0trY3Klhr_lcc4dg,1424
201
201
  bbot/modules/subdomainradar.py,sha256=YlRNMtNGLpa13KZ7aksAMVZdSjxe1tkywU5RXlwXpPc,6784
202
- bbot/modules/telerik.py,sha256=i9Zy2JZXLrmwSslFzVFVWApQNwTwNcrGsb_UxBuCtkI,18905
202
+ bbot/modules/telerik.py,sha256=KVWgMffZgItfZfx2fqcXMVPg-N0-fB56p_w5jMPa0Y4,18907
203
203
  bbot/modules/templates/bucket.py,sha256=muLPpfAGtcNhL0tLU-qHTlTNIz4yncRcVjdZMqVRtUI,7153
204
204
  bbot/modules/templates/github.py,sha256=lrV1EYPqjtPkJsS0fQfqmLvGchNo_fO3A75W9-03gxY,2531
205
205
  bbot/modules/templates/postman.py,sha256=MIpz2q_r6LP0kIEgByo7oX5qHhMZLOhr7oKzJI9Beec,6959
@@ -214,7 +214,7 @@ bbot/modules/urlscan.py,sha256=-w_3Bm6smyG2GLQyIbnMUkKmeQVauo-V6F4_kJDYG7s,3740
214
214
  bbot/modules/vhost.py,sha256=cirOe0HR4M0TEBN8JdXo2l0s2flc8ZSdxggGm79blT8,5459
215
215
  bbot/modules/viewdns.py,sha256=2SjNZNjQL1tko58tPAjP-CGYDmP-zZ1HpY-vACGa9UI,2595
216
216
  bbot/modules/virustotal.py,sha256=NIBF8jxvmeCEnmnUPOo0D3NwegjmlywzdbZ1w5pR7zI,1057
217
- bbot/modules/wafw00f.py,sha256=3wmH3xhVI5-fpc9UVsYVRKFUrXvM0gzarcdHEmy83Ao,2536
217
+ bbot/modules/wafw00f.py,sha256=1Yh5_MF-W1r8LhDOkJ44z-S1PJ9x07UB9MrGFm9Eb7Y,2541
218
218
  bbot/modules/wappalyzer.py,sha256=ix0JnLEQ4wLfvYuzrOlQuupJZc3AiY8bnGs3ne-qCFA,2190
219
219
  bbot/modules/wayback.py,sha256=9cxd_HfHgLp4AChzA8C0Zjd6DIJ7c3NsJ02W2oLIXuU,3257
220
220
  bbot/modules/wpscan.py,sha256=FVqZpjV3GrejjiowiqdwIb8t_pPl9yMVRtsAMzC-heA,11606
@@ -453,8 +453,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ZSIVebs7ptMvHx
453
453
  bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
454
454
  bbot/wordlists/valid_url_schemes.txt,sha256=0B_VAr9Dv7aYhwi6JSBDU-3M76vNtzN0qEC_RNLo7HE,3310
455
455
  bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
456
- bbot-2.6.0.6853rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
457
- bbot-2.6.0.6853rc0.dist-info/METADATA,sha256=8k8H7XudWXmaJ6b6PWHhZvPeGk3isD_dt-a8C6Th63M,18308
458
- bbot-2.6.0.6853rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
459
- bbot-2.6.0.6853rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
460
- bbot-2.6.0.6853rc0.dist-info/RECORD,,
456
+ bbot-2.6.0.6856rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
457
+ bbot-2.6.0.6856rc0.dist-info/METADATA,sha256=oMvTVaagbYVmlMc5wab2JvCljUkJyNLhHrUnzYJeTbc,18308
458
+ bbot-2.6.0.6856rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
459
+ bbot-2.6.0.6856rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
460
+ bbot-2.6.0.6856rc0.dist-info/RECORD,,