2019-06-09 01:43:09 +02:00
|
|
|
# fcrackzip
|
|
|
|
|
|
|
|
> ZIP archive password cracking utility.
|
2021-07-09 16:45:55 +02:00
|
|
|
> More information: <https://manned.org/fcrackzip>.
|
2019-06-09 01:43:09 +02:00
|
|
|
|
|
|
|
- Brute-force a password with a length of 4 to 8 characters, and contains only alphanumeric characters (order matters):
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`fcrackzip {{[-b|--brute-force]}} {{[-l|--length]}} 4-8 {{[-c|--charset]}} aA1 {{archive}}`
|
2019-06-09 01:43:09 +02:00
|
|
|
|
|
|
|
- Brute-force a password in verbose mode with a length of 3 characters that only contains lowercase characters, `$` and `%`:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`fcrackzip {{[-v|--verbose]}} {{[-b|--brute-force]}} {{[-l|--length]}} 3 {{[-c|--charset]}} a:$% {{archive}}`
|
2019-06-09 01:43:09 +02:00
|
|
|
|
|
|
|
- Brute-force a password that contains only lowercase and special characters:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`fcrackzip {{[-b|--brute-force]}} {{[-l|--length]}} 4 {{[-c|--charset]}} a! {{archive}}`
|
2019-06-09 01:43:09 +02:00
|
|
|
|
|
|
|
- Brute-force a password containing only digits, starting from the password `12345`:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`fcrackzip {{[-b|--brute-force]}} {{[-l|--length]}} 5 {{[-c|--charset]}} 1 {{[-p|--init-password]}} 12345 {{archive}}`
|
2019-06-09 01:43:09 +02:00
|
|
|
|
|
|
|
- Crack a password using a wordlist:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`fcrackzip {{[-u|--use-unzip]}} {{[-D|--dictionary]}} {{[-p|--init-password]}} {{wordlist}} {{archive}}`
|
2019-06-09 01:43:09 +02:00
|
|
|
|
|
|
|
- Benchmark cracking performance:
|
|
|
|
|
2025-04-20 00:21:53 +03:00
|
|
|
`fcrackzip {{[-B|--benchmark]}}`
|