-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in /modules/internal/cloudcheck.py: 'property' object has no attribute 'lower' #2024
Comments
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. Here's some additional general info about version that maybe could help: |
I was able to reproduce this by installing BBOT v2.2.0 via Is it possible you installed |
no, I definitely installed it with pipx, because when I ran "pip install bbot" I've received an error "ERROR: No matching distribution found for bbot". |
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!The text was updated successfully, but these errors were encountered: