Update cheatsheets

This commit is contained in:
ivuorinen
2025-04-20 00:20:58 +00:00
parent 846fc1563d
commit a360d4dc45
153 changed files with 493 additions and 434 deletions

View File

@@ -10,24 +10,24 @@ source: https://github.com/tldr-pages/tldr.git
- 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}}`
`fcrackzip {{[-b|--brute-force]}} {{[-l|--length]}} 4-8 {{[-c|--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}}`
`fcrackzip {{[-v|--verbose]}} {{[-b|--brute-force]}} {{[-l|--length]}} 3 {{[-c|--charset]}} a:$% {{archive}}`
- Brute-force a password that contains only lowercase and special characters:
`fcrackzip --brute-force --length 4 --charset a! {{archive}}`
`fcrackzip {{[-b|--brute-force]}} {{[-l|--length]}} 4 {{[-c|--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}}`
`fcrackzip {{[-b|--brute-force]}} {{[-l|--length]}} 5 {{[-c|--charset]}} 1 {{[-p|--init-password]}} 12345 {{archive}}`
- Crack a password using a wordlist:
`fcrackzip --use-unzip --dictionary --init-password {{wordlist}} {{archive}}`
`fcrackzip {{[-u|--use-unzip]}} {{[-D|--dictionary]}} {{[-p|--init-password]}} {{wordlist}} {{archive}}`
- Benchmark cracking performance:
`fcrackzip --benchmark`
`fcrackzip {{[-B|--benchmark]}}`