From 14eabab0a64bd7dbbbcfcb3f4cdb37c39639653b Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 9 Jun 2019 01:43:09 +0200 Subject: [PATCH] fcrackzip: add page (#3082) --- pages/linux/fcrackzip.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 pages/linux/fcrackzip.md diff --git a/pages/linux/fcrackzip.md b/pages/linux/fcrackzip.md new file mode 100644 index 000000000..54701fed7 --- /dev/null +++ b/pages/linux/fcrackzip.md @@ -0,0 +1,27 @@ +# fcrackzip + +> ZIP archive password cracking utility. + +- Brute-force a password with a length of 4 to 8 characters, and contains only alphanumeric characters (order matters): + +`fcrackzip --brute-force --length 4-8 --charset aA1 {{archive}}` + +- Brute-force a password in verbose mode with a length of 3 characters that only contains lowercase characters, `$` and `%`: + +`fcrackzip -v --brute-force --length 3 --charset a:$% {{archive}}` + +- Brute-force a password that contains only lowercase and special characters: + +`fcrackzip --brute-force --length 4 --charset a! {{archive}}` + +- Brute-force a password containing only digits, starting from the password `12345`: + +`fcrackzip --brute-force --length 5 --charset 1 --init-password 12345 {{archive}}` + +- Crack a password using a wordlist: + +`fcrackzip --use-unzip --dictionary --init-password {{wordlist}} {{archive}}` + +- Benchmark cracking performance: + +`fcrackzip --benchmark`