2021-08-23 01:13:54 +02:00
|
|
|
# John The Ripper
|
|
|
|
|
2021-09-01 00:44:36 +02:00
|
|
|
* [Formats](http://pentestmonkey.net/cheat-sheet/john-the-ripper-hash-formats)
|
|
|
|
|
2021-08-23 01:13:54 +02:00
|
|
|
# Usage
|
|
|
|
|
|
|
|
* Example
|
2021-09-01 00:44:36 +02:00
|
|
|
```sh
|
2021-08-23 01:13:54 +02:00
|
|
|
john --wordlist=/usr/share/seclists/Passwords/Leaked-Databases/rockyou.txt ./hash.txt --format=raw-sha256 --fork=2
|
|
|
|
```
|
2021-09-01 00:44:36 +02:00
|
|
|
|
|
|
|
## Declaring Structure
|
|
|
|
* List subformat
|
|
|
|
```sh
|
|
|
|
john --list=subformats
|
|
|
|
```
|
|
|
|
```sh
|
|
|
|
john --wordlist=/usr/share/seclists/Passwords/Leaked-Databases/rockyou.txt ./hash.txt --format=dynamic_85 --fork=2
|
|
|
|
```
|
|
|
|
|