mirror of
https://github.com/samba-team/samba.git
synced 2025-11-13 08:23:49 +03:00
[] is now mandatory : after the hostname is no longer allowed examples of allowed binding strings: ncacn_np:myhost[samr] ncacn_ip_tcp:10.0.0.1[1045] ncacn_ip_tcp:2001:7b8:37b:1:210:dcff:fecb:a9e3[1024,sign,seal] ncacn_np:myhost ncacn_ip_tcp:192.168.4.2 308FB580-1EB2-11CA-923B-08002B1075A7@ncacn_ip_tcp:192.168.4.2 308FB580-1EB2-11CA-923B-08002B1075A7@ncacn_ip_tcp:192.168.4.2[,print] Note that the last two lines are not recognized by smbtorture as a binding string yet. dcerpc_parse_binding() does accept them though.
48 lines
1.3 KiB
Bash
Executable File
48 lines
1.3 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 4 ]; then
|
|
cat <<EOF
|
|
Usage: test_echo.sh SERVER USERNAME PASSWORD DOMAIN
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
server="$1"
|
|
username="$2"
|
|
password="$3"
|
|
domain="$4"
|
|
shift 4
|
|
|
|
testit() {
|
|
cmdline="$*"
|
|
if ! $cmdline > test.$$ 2>&1; then
|
|
cat test.$$;
|
|
rm -f test.$$;
|
|
echo "TEST FAILED - $cmdline";
|
|
exit 1;
|
|
fi
|
|
rm -f test.$$;
|
|
}
|
|
|
|
for transport in ncacn_np ncacn_ip_tcp; do
|
|
for bindoptions in connect sign seal sign,seal validate padcheck bigendian bigendian,seal; do
|
|
for ntlmoptions in \
|
|
"--option=ntlmssp_client:ntlm2=yes" \
|
|
"--option=ntlmssp_client:ntlm2=no" \
|
|
"--option=ntlmssp_client:ntlm2=yes --option=ntlmssp_client:128bit=no" \
|
|
"--option=ntlmssp_client:ntlm2=no --option=ntlmssp_client:128bit=no" \
|
|
"--option=ntlmssp_client:ntlm2=yes --option=ntlmssp_client:keyexchange=no" \
|
|
"--option=ntlmssp_client:ntlm2=no --option=ntlmssp_client:keyexchange=no" \
|
|
; do
|
|
echo Testing $transport with $bindoptions and $ntlmoptions
|
|
testit bin/smbtorture $transport:"$server[$bindoptions]" $ntlmoptions -U"$username"%"$password" -W $domain RPC-ECHO "$*"
|
|
done
|
|
done
|
|
done
|
|
|
|
# separately test the print option - its v slow
|
|
echo Testing print option
|
|
testit bin/smbtorture ncacn_np:"$server[print]" -U"$username"%"$password" -W $domain RPC-ECHO "$*"
|
|
|
|
echo "ALL OK";
|