Perché john forza MinLen a 8 per wpapsk?

3

Sto provando a utilizzare john per testare la sicurezza di wpa. Voglio che generi password di 10 caratteri, quindi l'ho aggiunto a john.conf :

[Incremental:Test]
File = $JOHN/alnum.chr
MinLen = 10
MaxLen = 10
CharCount = 62

Tuttavia, quando eseguo john --format=wpapsk --session=mysession --incremental=Test data , viene stampato:

Note: minimum length forced to 8

e genera ancora password di 8 caratteri. Cosa mi manca?

    
posta Eugene Yarmash 31.10.2016 - 14:23
fonte

1 risposta

1

and still generates 8-character passwords. What am I missing?

La modalità

"incrementale" è limitata alle lunghezze fino a 8 per impostazione predefinita, a compilare il tempo.

How to deal with this ?

Scarica il codice sorgente JTR

  1. Ora modifica il file src / params.h - sostituisci le seguenti righe (in giro riga 200):
define CHARSET_MIN ' '
define CHARSET_MAX 0x7E
define CHARSET_LENGTH 8
with:
define CHARSET_MIN ' '
define CHARSET_MAX  0x7E
define CHARSET_LENGTH 10
  1. Quindi ricostruiamo JtR con questa modifica:

  2. E genera un nuovo file .chr:

./john --make-charset=digits10.chr

Ora puoi definire una nuova modalità "incrementale":

[Incremental:Digits10] 
File = $JOHN/digits10.chr 
MinLen = 10 
MaxLen = 10 
CharCount = 64

spero che questo funzioni per te

    
risposta data 31.10.2016 - 14:58
fonte

Leggi altre domande sui tag