PRINCE (PRobability INfinite Chained Elements) Attack takes one input
wordlist and builds “chains” of combined words automatically.
[[HashCat]] PRINCEPROCESSOR
https://github.com/hashcat/princeprocessor
Attack slow hashes:
```
pp64.bin dict.txt | hashcat -a 0 -m #type hash.txt
```
Amplified attack for fast hashes:
```
pp64.bin --case-permute dict.txt | hashcat -a 0 -m #type hash.txt -r rule.txt
```
Example PRINCE attack producing minimum 8 char candidates with 4
elements piped directly into Hashcat with rules attack.
```
pp64.bin --pw-min=8 --limit=4 dict.txt|hashcat -a 0 -m # hash.txt -r best64.rule
```
PRINCECEPTION ATTACK (epixoip)
Piping the output of one PRINCE attack into another PRINCE attack.
```
pp64.bin dict.txt | pp64.bin | hashcat -a 0 -m #type hash.txt JOHN BUILT-IN
```
PRINCE ATTACK [[John The Ripper]]
```
john --prince=dict.txt hash.txt
```
#advanced
[[Home]]