Simple tool to bruteforce HTTP authentication forms.
- Basic HTTP authentication
- Digest HTTP authentication
python3 python3 bruteforce-http-authentication.py -w http://site.com -u username -f passwords.txt -m basic
python3 python3 bruteforce-http-authentication.py -w http://site.com -u username -f passwords.txt -m digest
-w: url (https://test.com)
-u: username
-f: dictionary file
-m: method (basic or digest)
python3 -m pip install -r requirements.txt