# Kali John the ripper

### Hash aus Zip extrahieren

```
zip2john file.zip > hash.txt
```

Passwort hacken

```
john hash.txt

# Mit Wörterliste 

john hash.txt --wordlist=rockyou.txt

# Mit Maske

john hash.txt --mask=[A-Za-z0-9] --max-lenght=8 
# Bruteforce mit Groß- und Kleinbuchstaben und Zahlen bis maximale Länge von 8 Zeichen
```