1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 04:55:32 +02:00

john: add page (#3964)

This commit is contained in:
Alex 2020-04-06 22:01:31 +02:00 committed by GitHub
parent ccd220a1b2
commit 17c18771b0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

36
pages/common/john.md Normal file
View file

@ -0,0 +1,36 @@
# john
> Password cracker.
> More information: <https://www.openwall.com/john/>.
- Crack password hashes:
`john {{path/to/hashes.txt}}`
- Show passwords cracked:
`john --show {{path/to/hashes.txt}}`
- Display users' cracked passwords by user identifier from multiple files:
`john --show --users={{user_ids}} {{path/to/hashes*}} {{path/to/other/hashes*}}`
- Crack password hashes, using a custom wordlist:
`john --wordlist={{path/to/wordlist.txt}} {{path/to/hashes.txt}}`
- List available hash formats:
`john --list=formats`
- Crack password hashes, using a specific hash format:
`john --format={{md5crypt|...}} {{path/to/hashes.txt}}`
- Crack password hashes, enabling word mangling rules:
`john --rules {{path/to/hashes.txt}}`
- Restore an interrupted cracking session from a state file, e.g. `mycrack.rec`:
`john --restore={{mycrack}}`