john Standard:
```bash
john --wordlist=/usr/share/wordlists/rockyou.txt hash.txt
```
show if hash already cracked:
Mutated Wordlists With John:
```bash
john --wordlist=words.txt --rules --stdout > w_mutated.txt
john --wordlist=words.txt --rules=all --stdout > w_mutated.txt #Apply all rules
```
## Compressed
zip:
```bash
zip2john 2bcracked.zip > zip.hashes
john zip.hashes
```