Genera elenco di parole usando regole non predefinite (John The Ripper)

4

Se voglio creare un elenco di parole, utilizzando JTR per manipolare un elenco di fonti applicandone le regole predefinite, posso farlo in questo modo:

# john -rules --stdout --wordlist=/usr/share/wordlists/rockyou.txt | head
Press 'q' or Ctrl-C to abort, almost any other key for status
123456
12345
123456789
password
iloveyou
princess
1234567
rockyou
12345678
abc123

Tuttavia, se voglio applicare regole non predefinite alla lista di parole, a John non piace:

# john --rules=Jumbo --stdout --wordlist=/usr/share/wordlists/rockyou.txt | head
Extra parameter for option: "--rules=Jumbo"

Questo set di regole funziona bene quando si rompono gli hash:

john hashes.txt --wordlist=/usr/share/wordlists/rockyou.txt --rules=Jumbo

Perché John non può applicare le regole alla lista di parole e produrre una lista invece di essere in grado di crackare usando un rulesset come Jumbo?

O mi manca qualcosa?

    
posta SilverlightFox 16.11.2016 - 21:51
fonte

1 risposta

1

L'ho appena provato e funziona perfettamente per me. Assicurati di avere un nuovo JtR. Sto usando 1.8.0-jumbo

output di esempio:

./john -rules:Jumbo -w:password.lst --stdout | head 
Press 'q' or Ctrl-C to abort, almost any other key for status
123456789
password
    
risposta data 21.11.2016 - 20:01
fonte

Leggi altre domande sui tag