Cracking Files
Protected Files
Hunting for Encoded Files
for ext in $(echo ".xls .xls* .xltx .csv .od* .doc .doc* .pdf .pot .pot* .pp*");do echo -e "\\nFile extension: " $ext; find / -name *$ext 2>/dev/null | grep -v "lib\\|fonts\\|share\\|core" ;donegrep -rnw "PRIVATE KEY" /* 2>/dev/null | grep ":1"Cracking with John
# John Hashing Scripts
locate *2john*
# generating the corresponding hashes for encrypted SSH keys.
ssh2john.py SSH.private > ssh.hash
# Cracking SSH Keys
john --wordlist=rockyou.txt ssh.hash
john ssh.hash --showCracking Documents
Protected Archives
Cracking Archives
Cracking ZIP
Cracking OpenSSL Encrypted Archives
Cracking BitLocker Encrypted Drives
Last updated