Python bot for brute force SSH testing
Go to file
2023-02-24 10:14:52 +01:00
bruteforce_ssh.py maj readme 2022-11-09 11:34:13 +01:00
README.md Mise à jour de 'README.md' 2023-02-24 10:14:52 +01:00
requirements.txt push 2022-11-09 11:19:10 +01:00
wordlist.txt petite maj 2023-01-18 16:23:13 +01:00

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.