bbot icon indicating copy to clipboard operation
bbot copied to clipboard

problems with httpx

Open ngmisl opened this issue 1 year ago • 5 comments

Describe the bug scan crashed

Expected behavior scan works

BBOT Command bbot -t evilcorp.com -f subdomain-enum web-basic

OS, BBOT Installation Method + Version Linux, latest stable bbox

    "msg": "Failure downloading https://github.com/projectdiscovery/httpx/releases/download/v1.2.5/httpx_1.2.5_linux_amd64.zip, An unknown error occurred: ~/.netrc access too permissive: access permissions must restrict access to only the owner (None, line None)"
}

ngmisl avatar Apr 29 '24 06:04 ngmisl

Thanks for reporting. Out of curiosity have you created a .netrc file? I think the error message is suggesting you need to do this to it:

chmod 700 ~/.netrc

TheTechromancer avatar Apr 29 '24 10:04 TheTechromancer

Thanks for reporting. Out of curiosity have you created a .netrc file? I think the error message is suggesting you need to do this to it:

chmod 700 ~/.netrc

Hm no, but i also don't understand why this is necessary

ngmisl avatar Apr 30 '24 16:04 ngmisl

Having a .netrc file is uncommon and not necessary to use httpx or BBOT. If you haven't created the file, it would seem this is a bug in the httpx library.

Just to be sure, can you post the output of this command?

ls -l ~/.netrc

TheTechromancer avatar Apr 30 '24 17:04 TheTechromancer

Having a .netrc file is uncommon and not necessary to use httpx or BBOT. If you haven't created the file, it would seem this is a bug in the httpx library.

Just to be sure, can you post the output of this command?

ls -l ~/.netrc

-rw-rw-r-- 1 /home/user/.netrc

ngmisl avatar May 06 '24 07:05 ngmisl

Okay it looks like you do have that file. So to fix the issue all you need to do is delete it or move it somewhere else:

mv ~/.netrc ~/.netrc.bak

TheTechromancer avatar May 06 '24 11:05 TheTechromancer