From ac3a24e1a0475d07c8f3ed0bf9032f1d1f4229d5 Mon Sep 17 00:00:00 2001 From: ajrequenez Date: Sun, 16 Oct 2022 10:55:19 -0500 Subject: [PATCH] zip2john: add page (#9046) --- pages/common/zip2john.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 pages/common/zip2john.md diff --git a/pages/common/zip2john.md b/pages/common/zip2john.md new file mode 100644 index 0000000000..47193b7432 --- /dev/null +++ b/pages/common/zip2john.md @@ -0,0 +1,17 @@ +# zip2john + +> A tool to extract password hashes from zip files for use with John the Ripper password cracker. +> This is a utility tool usually installed as part of the John the Ripper installation. +> More information: . + +- Extract the password hash from an archive, listing all files in the archive: + +`zip2john {{path/to/file.zip}}` + +- Extract the password hash using [o]nly a specific compressed file: + +`zip2john -o {{path/to/compressed_file}} {{path/to/file.zip}}` + +- Extract the password hash from a compressed file to a specific file (for use with John the Ripper): + +`zip2john -o {{path/to/compressed_file}} {{path/to/file.zip}} > {{file.hash}}`