mirror of
https://github.com/samba-team/samba.git
synced 2025-03-20 22:50:26 +03:00
s3:selftest add a test for rpcclient --pw-nt-hash option
Signed-off-by: Christian Ambach <ambi@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit d0cdf02dc9733dae960021ff1ca07587d8155e58) Autobuild-User(v4-4-test): Karolin Seeger <kseeger@samba.org> Autobuild-Date(v4-4-test): Tue May 31 16:49:03 CEST 2016 on sn-devel-144
This commit is contained in:
parent
2f579c7b40
commit
8f142c8a0e
27
source3/script/tests/test_rpcclient_pw_nt_hash.sh
Executable file
27
source3/script/tests/test_rpcclient_pw_nt_hash.sh
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Blackbox tests for the rpcclient --pw-nt-hash option
|
||||
#
|
||||
|
||||
if [ $# -lt 4 ]; then
|
||||
cat <<EOF
|
||||
Usage: test_rpcclient_pw_nt_hash.sh USERNAME PASSWORD SERVER RPCCLIENT
|
||||
EOF
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
USERNAME="$1"
|
||||
PASSWORD="$2"
|
||||
SERVER="$3"
|
||||
RPCCLIENT="$4"
|
||||
|
||||
HASH=`echo -n $PASSWORD | iconv -t utf16le | openssl md4 |cut -d ' ' -f2`
|
||||
|
||||
RPCCLIENTCMD="$RPCCLIENT $SERVER --pw-nt-hash -U$USERNAME%$HASH -c queryuser"
|
||||
|
||||
incdir=$(dirname $0)/../../../testprogs/blackbox
|
||||
. $incdir/subunit.sh
|
||||
|
||||
testit "rpcclient --pw-nt-hash" $RPCCLIENTCMD || failed=`expr $failed + 1`
|
||||
|
||||
testok $0 $failed
|
@ -461,6 +461,11 @@ plantestsuite("samba3.blackbox.rpcclient_srvsvc", "simpleserver",
|
||||
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||
os.path.join(bindir(), "rpcclient"), "tmp"])
|
||||
|
||||
plantestsuite("samba3.blackbox.rpcclient.pw-nt-hash", "simpleserver",
|
||||
[os.path.join(samba3srcdir, "script/tests/test_rpcclient_pw_nt_hash.sh"),
|
||||
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||
os.path.join(bindir(), "rpcclient")])
|
||||
|
||||
options_list = ["", "-e"]
|
||||
for options in options_list:
|
||||
plantestsuite("samba3.blackbox.smbclient_krb5 old ccache %s" % options, "ktest:local",
|
||||
|
Loading…
x
Reference in New Issue
Block a user