You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
greglebreton
d30ab8deb7
|
2 years ago | |
---|---|---|
README.md | 2 years ago | |
bruteforce_ssh.py | 2 years ago | |
requirements.txt | 2 years ago | |
wordlist.txt | 2 years ago |
README.md
How to Brute-Force SSH Servers in Python
Ce projet (à titre pédagogique) montre l'utilisation d'un script python permettant de faire une attaque par brute force au dictionnaire (wordlist.txt).
INSTALLATION
python3 -m pip install -r requirements.txt
UTILISATION
If you want to bruteforce against the server 192.168.1.101
for example, the user root
and a password list of wordlist.txt
:
python bruteforce_ssh.py 192.168.1.101 -u root -P wordlist.txt
Note: Le résultat est inscrit dans un fichier credentials.txt
UPDATE
- 09/11/22: add "allow_agent=False,look_for_keys=False" to client.connect() args to avoid "Quota exceeded, retrying with delay..." error.