Guest User

Untitled

a guest
Feb 16th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. # Intall pkcrack
  2. brew install pkcrack
  3.  
  4. # Identify a file that you have, in my example I am bruteforcing password to uadmin.zip and the plaintext file is favicon.png
  5. Images work best.
  6.  
  7. # Compress plaintext
  8. zip plaintext.zip favicon.png
  9.  
  10. # Run pkcrack
  11. pkcrack -C uadmin.zip -c "uadmin/favicon.png" -P plaintext.zip -p "favicon.png" -d decrypted.zip -a
  12.  
  13. -C is path to encrypted archive
  14. -c is the path to the file within the encrypted archive
  15. -P is the path to archived plaintext
  16. -p is the path to the file within the plaintext archive
  17. -d is the path where you want decrypted.zip
  18. -a don't search after 1st success
Add Comment
Please, Sign In to add comment