Python bot for brute force SSH testing
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.
 
gregandev af3d3213b6 Mise à jour de 'README.md' 1 year ago
README.md Mise à jour de 'README.md' 1 year ago
bruteforce_ssh.py maj readme 2 years ago
requirements.txt push 2 years ago
wordlist.txt petite maj 1 year 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.