Open tim-sha256 opened 5 days ago
What is your python version?
Possible cause:
In this venv I had Python 3.8.5 by default.
Hmm that's strange because BBOT doesn't support python 3.8. It's not clear if that's the problem or not, but I'm curious to track it down because that value should never be anything other than a string:
That's strange. If you have any idea on what to test / check / send here - please let me know. I'm not that experienced with Python, so I'm not sure if I can identify the problem myself.
Here's some additional general info about version that maybe could help: pipx --version 1.7.1 python3 --version Python 3.12.4 python --version Python 3.8.5 user$ echo $PATH /usr/local/opt/postgresql@16/bin:/usr/local/bin:/usr/local/bin/python3.12:/Users/user/Library/Android/sdk/platform-tools:/Users/user/Library/Android/sdk/tools:/opt/anaconda3/bin:/opt/anaconda3/condabin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Users/user/.local/bin
I was able to reproduce this by installing BBOT v2.2.0 via pip
. The problem looks to be a conflict with an OS-level python package. If I install the same version with pipx
, it runs without any error.
Is it possible you installed bbot
via pip
at some point, and your bbot
executable is still pointing to the old one?
Describe the bug I installed BBOT v. 2.2.0 via pipx, and on the very first run encountered this error in the printed log in console:
This same error was displayed for each line of the log.
Expected behavior Each line should've been printed out correctly (same as in demo):
BBOT Command `bbot -t tesla.com -p subdomain-enum'
OS, BBOT Installation Method + Version
OS: Mac OS 15.0, Installation method: pipx, BBOT version: 2.0.2
Bug fix I fixed the bug for myself and it works perfectly fine now. in "cloudcheck.py" on line 43 there's currently:
provider_name = provider.name.lower()
.If you just replace it with:
provider_name = str(provider.name).lower()
, it works perfectly fine!