Skip to content

Commit

Permalink
john: add page (tldr-pages#3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhondta authored Apr 6, 2020
1 parent ccd220a commit 17c1877
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions pages/common/john.md
Original file line number Diff line number Diff line change
@@ -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}}`

0 comments on commit 17c1877

Please sign in to comment.