You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
706 B
27 lines
706 B
10 months ago
|
#!/bin/sh
|
||
|
# Author: Christoph Galuschka <christoph.galuschka@chello.at>
|
||
|
|
||
|
t_Log "Running $0 - cracklib can check some passwords."
|
||
|
ret_val=0
|
||
|
|
||
|
t_Log "checking very simple password"
|
||
|
echo -e "test" | cracklib-check | grep -q 'too short'
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
t_Log "checking simple password"
|
||
|
echo -e "testing" | cracklib-check | grep -q 'dictionary'
|
||
|
t_CheckExitStatus $?
|
||
|
|
||
|
if (t_GetPkgRel basesystem | grep -q el5)
|
||
|
then
|
||
|
t_Log "Simplistic password not checked on C5"
|
||
|
else
|
||
|
t_Log "checking simplistic password"
|
||
|
echo -e "1234_Hgi" | cracklib-check | grep -q 'simplistic'
|
||
|
t_CheckExitStatus $?
|
||
|
fi
|
||
|
|
||
|
t_Log "checking complicated password"
|
||
|
echo -e "1536_Hargi" | cracklib-check | grep -q 'OK'
|
||
|
t_CheckExitStatus $?
|