bbot 2.3.2.5897rc0__py3-none-any.whl → 2.3.2.5909rc0__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/modules/badsecrets.py +1 -1
- bbot/modules/deadly/nuclei.py +1 -1
- bbot/modules/trufflehog.py +6 -4
- {bbot-2.3.2.5897rc0.dist-info → bbot-2.3.2.5909rc0.dist-info}/METADATA +1 -1
- {bbot-2.3.2.5897rc0.dist-info → bbot-2.3.2.5909rc0.dist-info}/RECORD +9 -9
- {bbot-2.3.2.5897rc0.dist-info → bbot-2.3.2.5909rc0.dist-info}/WHEEL +1 -1
- {bbot-2.3.2.5897rc0.dist-info → bbot-2.3.2.5909rc0.dist-info}/LICENSE +0 -0
- {bbot-2.3.2.5897rc0.dist-info → bbot-2.3.2.5909rc0.dist-info}/entry_points.txt +0 -0
bbot/__init__.py
CHANGED
bbot/modules/badsecrets.py
CHANGED
bbot/modules/deadly/nuclei.py
CHANGED
bbot/modules/trufflehog.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import json
|
|
2
|
+
from functools import partial
|
|
2
3
|
from bbot.modules.base import BaseModule
|
|
3
4
|
|
|
4
5
|
|
|
@@ -13,7 +14,7 @@ class trufflehog(BaseModule):
|
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
options = {
|
|
16
|
-
"version": "3.88.
|
|
17
|
+
"version": "3.88.9",
|
|
17
18
|
"config": "",
|
|
18
19
|
"only_verified": True,
|
|
19
20
|
"concurrency": 8,
|
|
@@ -174,7 +175,7 @@ class trufflehog(BaseModule):
|
|
|
174
175
|
command.append("--delete-cached-data")
|
|
175
176
|
command.append("--token=" + self.github_token)
|
|
176
177
|
|
|
177
|
-
stats_file = self.helpers.tempfile_tail(callback=self.log_trufflehog_status)
|
|
178
|
+
stats_file = self.helpers.tempfile_tail(callback=partial(self.log_trufflehog_status, path))
|
|
178
179
|
try:
|
|
179
180
|
with open(stats_file, "w") as stats_fh:
|
|
180
181
|
async for line in self.helpers.run_live(command, stderr=stats_fh):
|
|
@@ -200,7 +201,7 @@ class trufflehog(BaseModule):
|
|
|
200
201
|
finally:
|
|
201
202
|
stats_file.unlink()
|
|
202
203
|
|
|
203
|
-
def log_trufflehog_status(self, line):
|
|
204
|
+
def log_trufflehog_status(self, path, line):
|
|
204
205
|
try:
|
|
205
206
|
line = json.loads(line)
|
|
206
207
|
except Exception:
|
|
@@ -209,4 +210,5 @@ class trufflehog(BaseModule):
|
|
|
209
210
|
message = line.get("msg", "")
|
|
210
211
|
ts = line.get("ts", "")
|
|
211
212
|
status = f"Message: {message} | Timestamp: {ts}"
|
|
212
|
-
self.
|
|
213
|
+
self.verbose(f"Current scan target: {path}")
|
|
214
|
+
self.verbose(status)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: bbot
|
|
3
|
-
Version: 2.3.2.
|
|
3
|
+
Version: 2.3.2.5909rc0
|
|
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=
|
|
1
|
+
bbot/__init__.py,sha256=gBUOnq65XDUUxN4vH08mNFSTzAny78Qj3WbEPKGBpKo,130
|
|
2
2
|
bbot/cli.py,sha256=hrzJX07sK3psSQWa461BXFuOxgCA94iztsw8syLdpNw,10830
|
|
3
3
|
bbot/core/__init__.py,sha256=l255GJE_DvUnWvrRb0J5lG-iMztJ8zVvoweDOfegGtI,46
|
|
4
4
|
bbot/core/config/__init__.py,sha256=zYNw2Me6tsEr8hOOkLb4BQ97GB7Kis2k--G81S8vofU,342
|
|
@@ -60,7 +60,7 @@ bbot/modules/azure_tenant.py,sha256=qBn7CUA_hth2PqW55XZVjYxIw20xLYrMntXc6mYpmKU,
|
|
|
60
60
|
bbot/modules/baddns.py,sha256=y6zTuE668MvNdaQszmkwYSwWzrjqit5X3zf5kLJbQC8,6692
|
|
61
61
|
bbot/modules/baddns_direct.py,sha256=yoOSqi4Z1ZwrycGbwklCukDBjWRWlz6JV67v_xVwHbE,3818
|
|
62
62
|
bbot/modules/baddns_zone.py,sha256=IcewDBtA_-64NCNFojEFd9jt2YBek6ltB2mmqdDH6LE,1034
|
|
63
|
-
bbot/modules/badsecrets.py,sha256=
|
|
63
|
+
bbot/modules/badsecrets.py,sha256=LG37p48Rlxsfc3BmACMpkypsbuFTVvXqNhlP1IEsx0k,5109
|
|
64
64
|
bbot/modules/base.py,sha256=fm-Z1mhqgYkJI_PEZwslMS9ThRsKIBTDvQAc1CWU9HI,72775
|
|
65
65
|
bbot/modules/bevigil.py,sha256=0VLIxmeXRUI2-EoR6IzuHJMcX8KCHNNta-WYa3gVlDg,2862
|
|
66
66
|
bbot/modules/binaryedge.py,sha256=5F9LnZwRM_rZnzTv29hLJLI2GEQdzOwSpahPFC1kJC0,1397
|
|
@@ -82,7 +82,7 @@ bbot/modules/credshed.py,sha256=HAF5wgRGKIIpdMAe4mIAtkZRLmFYjMFyXtjjst6RJ20,4203
|
|
|
82
82
|
bbot/modules/crt.py,sha256=6Zm90VKXwYYN6Sab0gwwhTARrtnQIqALJTVtFWMMTGk,1369
|
|
83
83
|
bbot/modules/deadly/dastardly.py,sha256=dxPkJUfAsuddDDuI_uVyTUxkJ5eps92nSrPtpBOTlQg,5315
|
|
84
84
|
bbot/modules/deadly/ffuf.py,sha256=sCledEgIi1ZgAhb-XlwbLIH3wBD5dSELZAEun_pNLOk,14745
|
|
85
|
-
bbot/modules/deadly/nuclei.py,sha256
|
|
85
|
+
bbot/modules/deadly/nuclei.py,sha256=-Ne3NMQwa55oMG_AkYWyxQMOA1j6Omkk7VHdSjh8isU,17808
|
|
86
86
|
bbot/modules/deadly/vhost.py,sha256=m7RdR0w7Hs38IGVHUu_3Er-_5ABVdalRG_8znQepxD0,5456
|
|
87
87
|
bbot/modules/dehashed.py,sha256=iyzWHmJs6zC7FsRhw9_AdkckQKCf_0oNnL9RwG409r0,5071
|
|
88
88
|
bbot/modules/digitorus.py,sha256=XQY0eAQrA7yo8S57tGncP1ARud-yG4LiWxx5VBYID34,1027
|
|
@@ -192,7 +192,7 @@ bbot/modules/templates/sql.py,sha256=o-CdyyoJvHJdJBKkj3CIGXYxUta4w2AB_2Vr-k7cDDU
|
|
|
192
192
|
bbot/modules/templates/subdomain_enum.py,sha256=epyKSly08jqaINV_AMMWbNafIeQjJqvd3aj63KD0Mck,8402
|
|
193
193
|
bbot/modules/templates/webhook.py,sha256=0N7LorCxT0sVmT2XgrV81ubdcdPVW8s2X__BrKC2AcM,3313
|
|
194
194
|
bbot/modules/trickest.py,sha256=MRgLW0YiDWzlWdAjyqfPPLFb-a51r-Ffn_dphiJI_gA,1550
|
|
195
|
-
bbot/modules/trufflehog.py,sha256=
|
|
195
|
+
bbot/modules/trufflehog.py,sha256=urYq_QpPQF_Piw1a5fWSyUymR_7YRsrqKTeZ0u_c7zU,8742
|
|
196
196
|
bbot/modules/url_manipulation.py,sha256=4J3oFkqTSJPPmbKEKAHJg2Q2w4QNKtQhiN03ZJq5VtI,4326
|
|
197
197
|
bbot/modules/urlscan.py,sha256=-w_3Bm6smyG2GLQyIbnMUkKmeQVauo-V6F4_kJDYG7s,3740
|
|
198
198
|
bbot/modules/viewdns.py,sha256=2SjNZNjQL1tko58tPAjP-CGYDmP-zZ1HpY-vACGa9UI,2595
|
|
@@ -423,8 +423,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ZSIVebs7ptMvHx
|
|
|
423
423
|
bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
|
|
424
424
|
bbot/wordlists/valid_url_schemes.txt,sha256=0B_VAr9Dv7aYhwi6JSBDU-3M76vNtzN0qEC_RNLo7HE,3310
|
|
425
425
|
bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
|
|
426
|
-
bbot-2.3.2.
|
|
427
|
-
bbot-2.3.2.
|
|
428
|
-
bbot-2.3.2.
|
|
429
|
-
bbot-2.3.2.
|
|
430
|
-
bbot-2.3.2.
|
|
426
|
+
bbot-2.3.2.5909rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
|
|
427
|
+
bbot-2.3.2.5909rc0.dist-info/METADATA,sha256=XPn1sMy365P31So5jCdjC7qxm1vrlK49ga48xJcPsjE,18224
|
|
428
|
+
bbot-2.3.2.5909rc0.dist-info/WHEEL,sha256=XbeZDeTWKc1w7CSIyre5aMDU_-PohRwTQceYnisIYYY,88
|
|
429
|
+
bbot-2.3.2.5909rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
|
|
430
|
+
bbot-2.3.2.5909rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|