Advertisement
Joker0day

Hashcat

Dec 21st, 2017
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. ~/Desktop/project/pycat$ cat md5cat.py
  2. import subprocess
  3.  
  4. def md5():
  5. try:
  6. print "Starting with Rootkit password list"
  7. print "\n********************************"
  8. y = subprocess.call('../../hashcat/./hashcat64.bin -m 0 ../../pwlist/hash.txt ../../pwlist/539_found_sorted.txt -o ../../pwlist/found1.txt', shell=True)
  9.  
  10. print "\nGoing for Linkedin password list"
  11. print "\n***********************************"
  12. z = subprocess.call('../../hashcat/./hashcat64.bin -m 0 ../../pwlist/hash.txt ../../pwlist/4920_found_sorted.txt -o ../../pwlist/found2.txt', shell=True)
  13.  
  14. print "\nGoing for Swedish password list"
  15. print "\n******************************************"
  16. yy = subprocess.call('../../hashcat/./hashcat64.bin -m 0 ../../pwlist/hash.txt ../../pwlist/sv.passwordlistan.txt -o ../../pwlist/found3.txt', shell=True)
  17.  
  18. print "\nGoing for Infosec west list"
  19. print "\n*******************************"
  20. yz = subprocess.call('../../hashcat/./hashcat64.bin -m 0 ../../pwlist/hash.txt ../../pwlist/560_found_sorted.txt -o ../../pwlist/found4.txt', shell=True)
  21.  
  22. except:
  23. print "o.O"
  24.  
  25. md5()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement