Decrypt (key, Hex, Hash, Cert, Pass)

HexDecimal Dump

output plain hex style

cat file | xxd -r -p | tee output

OpenSSL

Decrypting SSH key

openssl rsa -in key_encrypted -out key_decrypted

PDF [password protected]

pdf2john

John

In case you find a file which is password protected follow this :-

# search specific file name in 
ls /usr/share/john/

# convert it to hash 
pfx2john legacyy_dev_auth.pfx | tee hash-pfx
zip2john legacyy_dev_auth.pfx | tee hash-zip

# crack the hash
john --wordlist=/usr/share/wordlists/rockyou.txt hash-pfx

Fcrackzip

fcrackzip is use to crack password for any normal or compressed file ,e.g :- (.zip)

  • -u decompress the file first bu unzip

  • -D dictionary mode

  • -p password file path


Cewl

Generate password list

  • -d depth to spider

  • -m minimum word length

  • --with-numbers include word with numbers


Hashcat

-m hash-type (numeric)

Hydra

VNC

Last updated