Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 625 Bytes

Password Cracking.md

File metadata and controls

26 lines (20 loc) · 625 Bytes

Password Cracking

  • hashcat
  • John
# get the mode of cracking with hashcat
hashcat --example-hashes | grep -B4 'hash_starting'

# crack the hashes with the specified mode
hashcat -m xxxx hashes.txt /usr/share/wordlists/rockyou.txt

# view the cracked password when hashcat is done cracking
hashcat -m xxxx hashes.txt --show
# crack hashes with John
john -w=/usr/share/wordlists/rockyou.txt hashes.txt
# crack the password protected zip file
zip2john \<zipfile\> \> zipfile.hash
john  --format=zip zipfile.hash --wordlist=/usr/share/wordlists/rockyou.txt