mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
f738842adb
This will allow the test to pass on Ubuntu 22.04 which has MD4 disabled in OpenSSL by default. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
28 lines
694 B
Bash
Executable File
28 lines
694 B
Bash
Executable File
#!/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 | $PYTHON -c 'import sys, binascii, samba, samba.crypto; sys.stdout.buffer.write(binascii.hexlify(samba.crypto.md4_hash_blob(sys.stdin.buffer.read(1000))))')
|
|
|
|
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
|