C'è un modo per chiedere a cracklib-check di passare attraverso un elenco di password?

1

So che cracklib-check può essere usato per controllare la password individuale, come -

$ echo "12345" | /usr/sbin/cracklib-check
12345: it is too short

Se non vuoi essere super-utente come in Debian, è necessario essere superuser / root. L'altro modo è ovviamente essere superuser per fare la stessa cosa. Mi sto / stavo chiedendo se ci fosse un modo per fare una lista. Diciamo che ho una lista di password che vorrei cracklib-check per verificare, è possibile? Se sì come?

    
posta shirish 12.03.2017 - 09:26
fonte

1 risposta

1

Sì: eseguendo il piping nell'elenco delle password candidate da stdin .

$ man cracklib-check | grep -A 1 DESCR
DESCRIPTION
       cracklib-check takes a list of passwords from stdin and checks \
       them via libcrack2's FascistCheck(3) sub routine.

$ cat test.txt
pass1
pass2
pass3

$ cat test.txt | cracklib-check 
pass1: it is too short
pass2: it is too short
pass3: it is too short
    
risposta data 12.03.2017 - 20:28
fonte

Leggi altre domande sui tag