From 17c18771b0959760d2611f2e9b7096063bec3078 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 6 Apr 2020 22:01:31 +0200 Subject: [PATCH] john: add page (#3964) --- pages/common/john.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/john.md diff --git a/pages/common/john.md b/pages/common/john.md new file mode 100644 index 0000000000..121d43a3cc --- /dev/null +++ b/pages/common/john.md @@ -0,0 +1,36 @@ +# john + +> Password cracker. +> More information: . + +- 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}}`