bbot 2.7.0.7014rc0__py3-none-any.whl → 2.7.0.7023rc0__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.7.0.7014rc"
2
+ __version__ = "v2.7.0.7023rc"
3
3
 
4
4
  from .scanner import Scanner, Preset
5
5
 
bbot/core/engine.py CHANGED
@@ -636,7 +636,7 @@ class EngineServer(EngineBase):
636
636
  """
637
637
  if tasks:
638
638
  try:
639
- done, pending = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED, timeout=timeout)
639
+ done, _ = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED, timeout=timeout)
640
640
  return done
641
641
  except BaseException as e:
642
642
  if isinstance(e, (TimeoutError, asyncio.exceptions.TimeoutError)):
@@ -38,7 +38,6 @@ class DNSHelper(EngineClient):
38
38
  _wildcard_cache (dict): Cache for wildcard detection results.
39
39
  _dns_cache (LRUCache): Cache for DNS resolution results, limited in size.
40
40
  resolver_file (Path): File containing system's current resolver nameservers.
41
- filter_bad_ptrs (bool): Whether to filter out DNS names that appear to be auto-generated PTR records. Defaults to True.
42
41
 
43
42
  Args:
44
43
  parent_helper: The parent helper object with configuration details and utilities.
@@ -86,8 +86,6 @@ class DNSEngine(EngineServer):
86
86
  self._debug = self.dns_config.get("debug", False)
87
87
  self._dns_cache = LRUCache(maxsize=10000)
88
88
 
89
- self.filter_bad_ptrs = self.dns_config.get("filter_ptrs", True)
90
-
91
89
  async def resolve(self, query, **kwargs):
92
90
  """Resolve DNS names and IP addresses to their corresponding results.
93
91
 
bbot/core/helpers/ntlm.py CHANGED
@@ -17,11 +17,9 @@ class StrStruct(object):
17
17
  self.alloc = alloc
18
18
  self.offset = offset
19
19
  self.raw = raw[offset : offset + length]
20
- self.utf16 = False
21
20
 
22
21
  if len(self.raw) >= 2 and self.raw[1] == "\0":
23
22
  self.string = self.raw.decode("utf-16")
24
- self.utf16 = True
25
23
  else:
26
24
  self.string = self.raw
27
25
 
@@ -65,7 +65,7 @@ class RegexHelper:
65
65
 
66
66
  while tasks: # While there are tasks pending
67
67
  # Wait for the first task to complete
68
- done, pending = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED)
68
+ done, _ = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED)
69
69
 
70
70
  for task in done:
71
71
  result = task.result()
bbot/core/modules.py CHANGED
@@ -512,60 +512,6 @@ class ModuleLoader:
512
512
  # then we have a module
513
513
  return value
514
514
 
515
- def recommend_dependencies(self, modules):
516
- """
517
- Returns a dictionary containing missing dependencies and their suggested resolutions
518
-
519
- Needs work. For this we should probably be building a dependency graph
520
- """
521
- resolve_choices = {}
522
- # step 1: build a dictionary containing event types and their associated modules
523
- # {"IP_ADDRESS": set("masscan", "ipneighbor", ...)}
524
- watched = {}
525
- produced = {}
526
- for modname in modules:
527
- preloaded = self._preloaded.get(modname)
528
- if preloaded:
529
- for event_type in preloaded.get("watched_events", []):
530
- self.add_or_create(watched, event_type, modname)
531
- for event_type in preloaded.get("produced_events", []):
532
- self.add_or_create(produced, event_type, modname)
533
- watched_all = {}
534
- produced_all = {}
535
- for modname, preloaded in self.preloaded().items():
536
- if preloaded:
537
- for event_type in preloaded.get("watched_events", []):
538
- self.add_or_create(watched_all, event_type, modname)
539
- for event_type in preloaded.get("produced_events", []):
540
- self.add_or_create(produced_all, event_type, modname)
541
-
542
- # step 2: check to see if there are missing dependencies
543
- for modname in modules:
544
- preloaded = self._preloaded.get(modname)
545
- module_type = preloaded.get("type", "unknown")
546
- if module_type != "scan":
547
- continue
548
- watched_events = preloaded.get("watched_events", [])
549
- missing_deps = {e: not self.check_dependency(e, modname, produced) for e in watched_events}
550
- if all(missing_deps.values()):
551
- for event_type in watched_events:
552
- if event_type == "SCAN":
553
- continue
554
- choices = produced_all.get(event_type, [])
555
- choices = set(choices)
556
- with suppress(KeyError):
557
- choices.remove(modname)
558
- if event_type not in resolve_choices:
559
- resolve_choices[event_type] = {}
560
- deps = resolve_choices[event_type]
561
- self.add_or_create(deps, "required_by", modname)
562
- for c in choices:
563
- choice_type = self._preloaded.get(c, {}).get("type", "unknown")
564
- if choice_type == "scan":
565
- self.add_or_create(deps, "recommended", c)
566
-
567
- return resolve_choices
568
-
569
515
  def check_dependency(self, event_type, modname, produced):
570
516
  if event_type not in produced:
571
517
  return False
bbot/modules/dnstlsrpt.py CHANGED
@@ -44,20 +44,17 @@ class dnstlsrpt(BaseModule):
44
44
  "emit_emails": True,
45
45
  "emit_raw_dns_records": False,
46
46
  "emit_urls": True,
47
- "emit_vulnerabilities": True,
48
47
  }
49
48
  options_desc = {
50
49
  "emit_emails": "Emit EMAIL_ADDRESS events",
51
50
  "emit_raw_dns_records": "Emit RAW_DNS_RECORD events",
52
51
  "emit_urls": "Emit URL_UNVERIFIED events",
53
- "emit_vulnerabilities": "Emit VULNERABILITY events",
54
52
  }
55
53
 
56
54
  async def setup(self):
57
55
  self.emit_emails = self.config.get("emit_emails", True)
58
56
  self.emit_raw_dns_records = self.config.get("emit_raw_dns_records", False)
59
57
  self.emit_urls = self.config.get("emit_urls", True)
60
- self.emit_vulnerabilities = self.config.get("emit_vulnerabilities", True)
61
58
  return await super().setup()
62
59
 
63
60
  def _incoming_dedup_hash(self, event):
@@ -139,6 +136,3 @@ class dnstlsrpt(BaseModule):
139
136
  tags=tags.append(f"tlsrpt-record-{key}"),
140
137
  parent=event,
141
138
  )
142
-
143
-
144
- # EOF
@@ -116,13 +116,6 @@ class iis_shortnames(BaseModule):
116
116
 
117
117
  return duplicates
118
118
 
119
- async def threaded_request(self, method, url, affirmative_status_code, c):
120
- r = await self.helpers.request(method=method, url=url, allow_redirects=False, retries=2, timeout=10)
121
- if r is not None:
122
- if r.status_code == affirmative_status_code:
123
- return True, c
124
- return None, c
125
-
126
119
  async def solve_valid_chars(self, method, target, affirmative_status_code):
127
120
  confirmed_chars = []
128
121
  confirmed_exts = []
@@ -123,6 +123,3 @@ class securitytxt(BaseModule):
123
123
 
124
124
  if found_url != url and self._urls is True:
125
125
  await self.emit_event(found_url, "URL_UNVERIFIED", parent=event, tags=tags)
126
-
127
-
128
- # EOF
@@ -111,7 +111,6 @@ async def test_task_scan_handle_event_timeout(bbot_scanner):
111
111
  class LongBatchModule(BaseModule):
112
112
  watched_events = ["IP_ADDRESS"]
113
113
  handled_event = False
114
- canceled = False
115
114
  _name = "long_batch"
116
115
  _batch_size = 2
117
116
 
@@ -1723,7 +1723,7 @@ class Test_Lightfuzz_XSS_jsquotecontext(ModuleTestBase):
1723
1723
  input_value = param.split("=")[1]
1724
1724
  break
1725
1725
 
1726
- if input_value:
1726
+ if input_value is not None:
1727
1727
  # Simulate flawed escaping
1728
1728
  sanitized_input = input_value.replace('"', '\\"').replace("'", "\\'")
1729
1729
  sanitized_input = sanitized_input.replace("<", "%3C").replace(">", "%3E")
@@ -1786,7 +1786,7 @@ class Test_Lightfuzz_XSS_jsquotecontext_doublequote(Test_Lightfuzz_XSS_jsquoteco
1786
1786
  input_value = param.split("=")[1]
1787
1787
  break
1788
1788
 
1789
- if input_value:
1789
+ if input_value is not None:
1790
1790
  # Simulate flawed escaping with opposite quotes
1791
1791
  sanitized_input = input_value.replace("'", "\\").replace("%22", '\\"')
1792
1792
  sanitized_input = sanitized_input.replace("<", "%3C").replace(">", "%3E")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: bbot
3
- Version: 2.7.0.7014rc0
3
+ Version: 2.7.0.7023rc0
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,11 +1,11 @@
1
- bbot/__init__.py,sha256=GYbLybdBdZxaci4CKaXd34wfwnefDPFo2rPogyWvELI,163
1
+ bbot/__init__.py,sha256=VKfE9ISNzVnnTInwo3dnrRTd-eWzXTKXDkjVilAEuMc,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
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=9p7yoKMVvKGO0UCOkQK0D-9byvrcn2wFGDke6g_PY6c,29368
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
@@ -21,8 +21,8 @@ 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=erinIU5Ss2oBd0jgHucPwAgArBlQh2lQGeAZbxhq5lc,8436
25
- bbot/core/helpers/dns/engine.py,sha256=Xs2VyjvQFmjKciQOlEWO0ELUmXiUxwoj8YX3InVlOic,28777
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
28
  bbot/core/helpers/files.py,sha256=vWxx5AfH8khboawBdUi-KYvbjpybSMLGZpixylitGMQ,5811
@@ -31,10 +31,10 @@ bbot/core/helpers/interactsh.py,sha256=VBYYH6-rWBofRsgemndK6iZNmyifOps8vgQOw2mac
31
31
  bbot/core/helpers/libmagic.py,sha256=QMHyxjgDLb2jyjBvK1MQ-xt6WkGXhKcHu9ZP1li-sik,3460
32
32
  bbot/core/helpers/misc.py,sha256=kQzxGBvD87nyEIXiT8JjIpPh5KKC_rKyHrOVoPG14cw,89035
33
33
  bbot/core/helpers/names_generator.py,sha256=zmo4MyuOnAYjiUDiORhq9T9bHmA_gW72Y2kHMAqVENU,10594
34
- bbot/core/helpers/ntlm.py,sha256=P2Xj4-GPos2iAzw4dfk0FJp6oGyycGhu2x6sLDVjYjs,2573
34
+ bbot/core/helpers/ntlm.py,sha256=BspNjNyKiWEqdqG3gYzYFyLsnCuzWyLOsguv1yBWLs0,2516
35
35
  bbot/core/helpers/process.py,sha256=00uRpLMFi3Pt3uT8qXwAIhsXdoa7h-ifoXh0sGYgwqs,1702
36
36
  bbot/core/helpers/ratelimiter.py,sha256=fQp5mKfqfCkDkZzgntDu4NWlRsWSMCto0V8vaV8-34k,2115
37
- bbot/core/helpers/regex.py,sha256=02gRS9DZjGfyuc16SsC9vSweBy6ATV3cz23LZMLgjoo,4578
37
+ bbot/core/helpers/regex.py,sha256=iJMK51U1paJSzJ4_AufQqvNFoJ7JWvFBysnWEL5Jw4k,4572
38
38
  bbot/core/helpers/regexes.py,sha256=8bPyUKQJZ6Oor5wuJ4n4VJ0R8zPDrOAIdZ4GRU57OMA,8771
39
39
  bbot/core/helpers/url.py,sha256=eunp4PNNulhitjDpl9tXJkgbTmLgGXmPaGAEaExRqTY,6352
40
40
  bbot/core/helpers/validators.py,sha256=-WBYvjlwi5SsVtn_LankKGI8vaBza2NqvM1lGbVmiN4,9711
@@ -46,7 +46,7 @@ bbot/core/helpers/web/ssl_context.py,sha256=aWVgl-d0HoE8B4EBKNxaa5UAzQmx79DjDByf
46
46
  bbot/core/helpers/web/web.py,sha256=q9X6JNufbZzRijzsc6bXkxH0ntly7rDr-uptscSKxRo,24042
47
47
  bbot/core/helpers/wordcloud.py,sha256=QM8Z1N01_hXrRFKQjvRL-IzOOC7ZMKjuSBID3u77Sxg,19809
48
48
  bbot/core/helpers/yara_helper.py,sha256=ypwC_H_ovJp9BpOwqgPkIdZEwqWfvqrRdKlwzBLfm8Q,1592
49
- bbot/core/modules.py,sha256=G4rRVF1bQzp62kwpgxwMa_FTV4-huWwtcd6HpW9jQf0,31970
49
+ bbot/core/modules.py,sha256=_h-TFaMw7NmpEO1orJ9kVgeVbATbMxo7zlGoa8p9Cs8,29354
50
50
  bbot/core/multiprocess.py,sha256=ocQHanskJ09gHwe7RZmwNdZyCOQyeyUoIHCtLbtvXUk,1771
51
51
  bbot/core/shared_deps.py,sha256=NeJmyakKxQQjN-H3rYGwGuHeVxDiVM_KnDfeVEeIbf4,9498
52
52
  bbot/db/sql/models.py,sha256=SrUdDOBCICzXJBY29p0VvILhMQ1JCuh725bqvIYogX0,4884
@@ -91,7 +91,7 @@ bbot/modules/dnsbrute_mutations.py,sha256=EbAZ-ZOqk98OAMacc8PuX_zx6eXyn6gJxgFuZ8
91
91
  bbot/modules/dnscaa.py,sha256=pyaLqHrdsVhqtd1JBZVjKKcuYT_ywUbFYkrnfXcGD5s,5014
92
92
  bbot/modules/dnscommonsrv.py,sha256=wrCRTlqVuxFIScWH0Cb0UQAVk0TWxgVc5fo5awl3R24,1568
93
93
  bbot/modules/dnsdumpster.py,sha256=bqUqyvRJVtoTXbDxTZ-kgPNq4dCE9xv_msBIn_Nj5IM,3251
94
- bbot/modules/dnstlsrpt.py,sha256=ntNKVDXDgDVWr1A20ShNT5HFBhXsVEM5aUIEU_0c9HU,6427
94
+ bbot/modules/dnstlsrpt.py,sha256=v8V72RBsawmDPrMrTcKXEyoFt9bgbfm-cpoPYgKEKLQ,6238
95
95
  bbot/modules/docker_pull.py,sha256=zNQcQdS-JWM2-TbQ_iyjeGA9CKcpuXdeO5ucoJgzZNY,9189
96
96
  bbot/modules/dockerhub.py,sha256=JQkujjqvQRzQuvHjQ7JbFs_VlJj8dLRPRObAkBgUQhc,3493
97
97
  bbot/modules/dotnetnuke.py,sha256=zipcHyNYr2FEecStb1Yrm938ps01RvHV8NnyqAvnGGc,10537
@@ -119,7 +119,7 @@ bbot/modules/host_header.py,sha256=uDjwidMdeNPMRfzQ2YW4REEGsZqnGOZHbOS6GgdNd9s,7
119
119
  bbot/modules/httpx.py,sha256=tlQ6NKw8FJ6rGaNI1BnwKqjxZFn1MZeItGZgNab_Ydo,8177
120
120
  bbot/modules/hunt.py,sha256=zt-RKBiOlAKozHA-ZvuPeSOISEu7rIo2aHXQWEsILhw,6607
121
121
  bbot/modules/hunterio.py,sha256=dL8IUecJQzNJgvtHArQ1Lz574MbRTF7GbLxp6lLcs0o,2644
122
- bbot/modules/iis_shortnames.py,sha256=TD4kow8TB9slz0SENrfxmQ0Yo9WwsY6DB3j0vvgUIbA,16296
122
+ bbot/modules/iis_shortnames.py,sha256=7nEkfBP4CAEiat3C_575INoZSmm6wJ2sZqn7hMSlECg,15970
123
123
  bbot/modules/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
124
124
  bbot/modules/internal/aggregate.py,sha256=HnnfTX2GYsOz8IFtfrRX1uXV6rvFx4uG9lmYJF2sdog,419
125
125
  bbot/modules/internal/base.py,sha256=BXO4Hc7XKaAOaLzolF3krJX1KibPxtek2GTQUgnCHk0,387
@@ -190,7 +190,7 @@ bbot/modules/report/base.py,sha256=hOtZF41snTSlHZmzZndmOjfmtdKPy2-tfFBAxxbHcao,1
190
190
  bbot/modules/retirejs.py,sha256=9RjTHtBfWY0GmD_DPILjYyylGqGUN-DERaGgLfaObSs,10210
191
191
  bbot/modules/robots.py,sha256=LGG6ixsxrlaCk-mi4Lp6kB2RB1v-25NhTAQxdQEtH8s,2172
192
192
  bbot/modules/securitytrails.py,sha256=5Jk_HTQP8FRq6A30sN19FU79uLJt7aiOsI2dxNkLDcM,1148
193
- bbot/modules/securitytxt.py,sha256=nwaTOnRAl2NWcEc3i_I9agB56QjqK8dHqiKRHPPkCPE,4558
193
+ bbot/modules/securitytxt.py,sha256=_iK9t-srNMdeN3x0NQ9Q87Sc5eyKX4yTgljr08M-OOc,4550
194
194
  bbot/modules/shodan_dns.py,sha256=ETOyUhCiAETlGUAQhvAP47oEEPYss7fm_F_CAeCQyoI,842
195
195
  bbot/modules/shodan_idb.py,sha256=PB5vplwpjPjbfoMeez333rWYqFY5RuMp40ZN9hNCJAg,6088
196
196
  bbot/modules/sitedossier.py,sha256=MR9fSkgE_3YGsUe7M-TyJ2GdpBtF3oLKDl9agAwzw5U,2284
@@ -290,7 +290,7 @@ bbot/test/test_step_1/test_modules_basic.py,sha256=ELpGlsthSq8HaxB5My8-ESVHqMxqd
290
290
  bbot/test/test_step_1/test_presets.py,sha256=HnJhKwDnVh9Y6adgxqe85677rWpnFil_WS5GjX21ZvM,40959
291
291
  bbot/test/test_step_1/test_python_api.py,sha256=Fk5bxEsPSjsMZ_CcRMTJft8I48EizwHJivG9Fy4jIu0,5502
292
292
  bbot/test/test_step_1/test_regexes.py,sha256=GEJE4NY6ge0WnG3BcFgRiT78ksy2xpFk6UdS9vGQMPs,15254
293
- bbot/test/test_step_1/test_scan.py,sha256=2tnIvh1PYDq1YoxT2MJZAMf_gg02v5aDaB6aknMjtmI,10490
293
+ bbot/test/test_step_1/test_scan.py,sha256=ywWFSmwDGQFEvQiWwJ0FBTWWarh3IEyMz98gNBHUJkU,10465
294
294
  bbot/test/test_step_1/test_scope.py,sha256=S2nssENKJKCvgXUMyU8MFQmXHeUIz0C_sbWGkdYti2A,3063
295
295
  bbot/test/test_step_1/test_target.py,sha256=4Xz6Fns_6wa2O3AXDBvd7W04LCfZSCiit2lezQJicTI,19472
296
296
  bbot/test/test_step_1/test_web.py,sha256=qzMb5v_1l6fK6SvJZoHpBI3Zb7iaHU_VnenQ8UQIK-4,19637
@@ -380,7 +380,7 @@ bbot/test/test_step_2/module_tests/test_module_ipstack.py,sha256=C0Le03UqvShpATo
380
380
  bbot/test/test_step_2/module_tests/test_module_jadx.py,sha256=WP90x3whiyh0xCb5V4w5002PM564KKC44OVuyCGQ6Eo,2585
381
381
  bbot/test/test_step_2/module_tests/test_module_json.py,sha256=gmlqge5ZJpjVMGs7OLZBsNlSFTTrKnKjIZMIU23o8VQ,3350
382
382
  bbot/test/test_step_2/module_tests/test_module_leakix.py,sha256=DQaQsL4ewpuYeygp-sgcvdeOSzvHq77_eYjKcgebS7A,1817
383
- bbot/test/test_step_2/module_tests/test_module_lightfuzz.py,sha256=W8IrU5WEBESR8xZUNVHWzLqjDVuVj2m_5q0xiGZwYAo,72050
383
+ bbot/test/test_step_2/module_tests/test_module_lightfuzz.py,sha256=ZuFAQqn6WF_jvun3Lvd5ozQcle-ZisINu1kU-DTB11o,72074
384
384
  bbot/test/test_step_2/module_tests/test_module_medusa.py,sha256=vYoAyMf0LbIXCoUzLycOISZtF7M58E30WjuLuqxDiCg,1671
385
385
  bbot/test/test_step_2/module_tests/test_module_mysql.py,sha256=4wAPjbjhlxmOkEhQnIQIBC2BLEaE57TX6lChGZ3zLsU,2630
386
386
  bbot/test/test_step_2/module_tests/test_module_myssl.py,sha256=zRJ1sOEespWtBx2jA07bW5sHD1XQ9pV0PtHtGogo7Gs,1531
@@ -455,8 +455,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ZSIVebs7ptMvHx
455
455
  bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
456
456
  bbot/wordlists/valid_url_schemes.txt,sha256=0B_VAr9Dv7aYhwi6JSBDU-3M76vNtzN0qEC_RNLo7HE,3310
457
457
  bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
458
- bbot-2.7.0.7014rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
459
- bbot-2.7.0.7014rc0.dist-info/METADATA,sha256=GsGWZIjQkEbMPR5NAo9tWaTV3E90pgVNrfkPW_K-8vw,18308
460
- bbot-2.7.0.7014rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
461
- bbot-2.7.0.7014rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
462
- bbot-2.7.0.7014rc0.dist-info/RECORD,,
458
+ bbot-2.7.0.7023rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
459
+ bbot-2.7.0.7023rc0.dist-info/METADATA,sha256=z0gRx5FT5BSBla3n4lSIgKngjNt6NODz1fUox8-UAfY,18308
460
+ bbot-2.7.0.7023rc0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
461
+ bbot-2.7.0.7023rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
462
+ bbot-2.7.0.7023rc0.dist-info/RECORD,,