2 # Blackbox tests for kinit and kerberos integration with smbclient etc
3 # Copyright (C) 2006-2007 Jelmer Vernooij <jelmer@samba.org>
4 # Copyright (C) 2006-2008 Andrew Bartlett <abartlet@samba.org>
8 Usage: test_passwords.sh SERVER USERNAME PASSWORD REALM DOMAIN PREFIX
22 samba4bindir
="$BINDIR"
23 smbclient
="$samba4bindir/smbclient$EXEEXT"
24 samba4kinit
="$samba4bindir/samba4kinit$EXEEXT"
25 samba_tool
="$samba4bindir/samba-tool$EXEEXT"
26 rkpty
="$samba4bindir/rkpty$EXEEXT"
27 samba4kpasswd
="$samba4bindir/samba4kpasswd$EXEEXT"
28 newuser
="$samba_tool newuser"
30 .
`dirname $0`/subunit.sh
38 $VALGRIND $smbclient //$SERVER/tmp
-c "$cmd" -W "$DOMAIN" $@
40 if [ x
$status = x0
]; then
48 CONFIG
="--configfile=$PREFIX/dc/etc/smb.conf"
51 testit
"reset password policies beside of minimum password age of 0 days" $VALGRIND $samba_tool domain passwordsettings
$CONFIG set --complexity=default
--history-length=default
--min-pwd-length=default
--min-pwd-age=0 --max-pwd-age=default || failed
=`expr $failed + 1`
55 testit
"create user locally" $VALGRIND $newuser $CONFIG nettestuser
$USERPASS $@ || failed
=`expr $failed + 1`
57 KRB5CCNAME
="$PREFIX/tmpuserccache"
60 echo $USERPASS > $PREFIX/tmpuserpassfile
62 testit
"kinit with user password" $samba4kinit --password-file=$PREFIX/tmpuserpassfile
--request-pac nettestuser@
$REALM || failed
=`expr $failed + 1`
64 test_smbclient
"Test login with user kerberos ccache" 'ls' -k yes || failed
=`expr $failed + 1`
66 NEWUSERPASS
=testPaSS@
02%
67 testit
"change user password with 'samba-tool password change' (unforced)" $VALGRIND $samba_tool password change
-W$DOMAIN -U$DOMAIN/nettestuser
%$USERPASS -k no
$NEWUSERPASS $@ || failed
=`expr $failed + 1`
69 echo $NEWUSERPASS > .
/tmpuserpassfile
70 testit
"kinit with user password" $samba4kinit --password-file=.
/tmpuserpassfile
--request-pac nettestuser@
$REALM || failed
=`expr $failed + 1`
72 test_smbclient
"Test login with user kerberos ccache" 'ls' -k yes || failed
=`expr $failed + 1`
77 NEWUSERPASS
=testPaSS@
03%
79 # password mismatch check doesn't work yet (kpasswd bug, reported to Love)
80 #echo "check that password mismatch gives the right error"
81 #cat > ./tmpkpasswdscript <<EOF
83 #password ${USERPASS}\n
87 #send ${NEWUSERPASS}\n
88 #expect password mismatch
91 #testit "change user password with kpasswd" $rkpty ./tmpkpasswdscript $samba4kpasswd nettestuser@$REALM || failed=`expr $failed + 1`
94 echo "check that a weak password is rejected"
95 cat > .
/tmpkpasswdscript
<<EOF
97 password ${USERPASS}\n
102 expect Password does not meet complexity requirements
105 testit
"change to weak user password with kpasswd" $rkpty .
/tmpkpasswdscript
$samba4kpasswd nettestuser@
$REALM || failed
=`expr $failed + 1`
107 echo "check that a short password is rejected"
108 cat > .
/tmpkpasswdscript
<<EOF
110 password ${USERPASS}\n
115 expect Password too short
118 testit
"change to short user password with kpasswd" $rkpty .
/tmpkpasswdscript
$samba4kpasswd nettestuser@
$REALM || failed
=`expr $failed + 1`
121 echo "check that a strong new password is accepted"
122 cat > .
/tmpkpasswdscript
<<EOF
124 password ${USERPASS}\n
126 send ${NEWUSERPASS}\n
128 send ${NEWUSERPASS}\n
132 testit
"change user password with kpasswd" $rkpty .
/tmpkpasswdscript
$samba4kpasswd nettestuser@
$REALM || failed
=`expr $failed + 1`
134 test_smbclient
"Test login with user kerberos (unforced)" 'ls' -k yes -Unettestuser@
$REALM%$NEWUSERPASS || failed
=`expr $failed + 1`
137 NEWUSERPASS
=testPaSS@
04%
138 testit
"set password on user locally" $VALGRIND $samba_tool user setpassword
$CONFIG nettestuser
--newpassword=$NEWUSERPASS --must-change-at-next-login $@ || failed
=`expr $failed + 1`
139 USERPASS
=$NEWUSERPASS
141 NEWUSERPASS
=testPaSS@
05%
142 testit
"change user password with 'samba-tool password change' (after must change flag set)" $VALGRIND $samba_tool password change
-W$DOMAIN -U$DOMAIN/nettestuser
%$USERPASS -k no
$NEWUSERPASS $@ || failed
=`expr $failed + 1`
143 USERPASS
=$NEWUSERPASS
145 NEWUSERPASS
=testPaSS@
06%
146 testit
"set password on user locally" $VALGRIND $samba_tool user setpassword
$CONFIG nettestuser
--newpassword=$NEWUSERPASS --must-change-at-next-login $@ || failed
=`expr $failed + 1`
147 USERPASS
=$NEWUSERPASS
149 NEWUSERPASS
=testPaSS@
07%
151 cat > .
/tmpkpasswdscript
<<EOF
153 password ${USERPASS}\n
155 send ${NEWUSERPASS}\n
157 send ${NEWUSERPASS}\n
161 testit
"change user password with kpasswd (after must change flag set)" $rkpty .
/tmpkpasswdscript
$samba4kpasswd nettestuser@
$REALM || failed
=`expr $failed + 1`
162 USERPASS
=$NEWUSERPASS
164 test_smbclient
"Test login with user kerberos" 'ls' -k yes -Unettestuser@
$REALM%$NEWUSERPASS || failed
=`expr $failed + 1`
167 testit_expect_failure
"try to set a non-complex password (command should not succeed)" $VALGRIND $samba_tool password change
-W$DOMAIN "-U$DOMAIN/nettestuser%$USERPASS" -k no
"$NEWUSERPASS" $@
&& failed
=`expr $failed + 1`
169 testit
"allow non-complex passwords" $VALGRIND $samba_tool domain passwordsettings
set $CONFIG --complexity=off || failed
=`expr $failed + 1`
171 testit
"try to set a non-complex password (command should succeed)" $VALGRIND $samba_tool password change
-W$DOMAIN "-U$DOMAIN/nettestuser%$USERPASS" -k no
"$NEWUSERPASS" $@ || failed
=`expr $failed + 1`
172 USERPASS
=$NEWUSERPASS
174 test_smbclient
"test login with non-complex password" 'ls' -k no
-Unettestuser@
$REALM%$USERPASS || failed
=`expr $failed + 1`
177 testit_expect_failure
"try to set a short password (command should not succeed)" $VALGRIND $samba_tool password change
-W$DOMAIN "-U$DOMAIN/nettestuser%$USERPASS" -k no
"$NEWUSERPASS" $@
&& failed
=`expr $failed + 1`
179 testit
"allow short passwords (length 1)" $VALGRIND $samba_tool domain passwordsettings
$CONFIG set --min-pwd-length=1 || failed
=`expr $failed + 1`
181 testit
"try to set a short password (command should succeed)" $VALGRIND $samba_tool password change
-W$DOMAIN "-U$DOMAIN/nettestuser%$USERPASS" -k no
"$NEWUSERPASS" $@ || failed
=`expr $failed + 1`
182 USERPASS
="$NEWUSERPASS"
184 testit
"require minimum password age of 1 day" $VALGRIND $samba_tool domain passwordsettings
$CONFIG set --min-pwd-age=1 || failed
=`expr $failed + 1`
186 testit
"show password settings" $VALGRIND $samba_tool domain passwordsettings
$CONFIG show || failed
=`expr $failed + 1`
188 NEWUSERPASS
="testPaSS@08%"
189 testit_expect_failure
"try to change password too quickly (command should not succeed)" $VALGRIND $samba_tool password change
-W$DOMAIN "-U$DOMAIN/nettestuser%$USERPASS" -k no
"$NEWUSERPASS" $@
&& failed
=`expr $failed + 1`
191 testit
"reset password policies" $VALGRIND $samba_tool domain passwordsettings
$CONFIG set --complexity=default
--history-length=default
--min-pwd-length=default
--min-pwd-age=default
--max-pwd-age=default || failed
=`expr $failed + 1`
193 testit
"del user" $VALGRIND $samba_tool user delete nettestuser
-U"$USERNAME%$PASSWORD" -k no $@ || failed
=`expr $failed + 1`
195 rm -f tmpccfile tmppassfile tmpuserpassfile tmpuserccache tmpkpasswdscript