Hamster is a python-based script to test the password strength of the Http Basic Authentication page with a bruteforce attack. This tool works wherever there is python.
- Ubuntu 20.04
- Ubuntu 18.04
- Kali Linux 2020.4
Installation Linux
git clone https://github.com/ferhatcil/hamster.git
cd hamster
python3 hamster.py -u admin --passwords rockyou.txt -v
Short form | Long form | Description |
---|---|---|
-h | --help | show this help message and exit |
-v | -v | also shows failed session requests |
-u | --user | you can specify only one username |
-U | --users | you can upload a txt file filled with usernames |
-p | --password | you can specify only one password |
-P | --passwords | you can upload a txt file filled with passwords |
-d | --domain | you can specify only one domain |
-D | --domains | you can upload a txt file filled with domains |
python3 hamster.py -u admin -p admin -d http://localhost/login.php
python3 hamster.py -u admin --passwords rockyou.txt -d http://localhost/login.php
python3 hamster.py --users users.txt --passwords passwords.txt --domains host-list.txt -v
- pilot