summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2004-05-25 23:12:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:56:18 -0500
commite754760d2346cb868182b479745ee60630188298 (patch)
treec79a3c2c62710c35461d59253097621d84d410c4 /source4
parente80dad7561edbf65605e9c94ef8801e4416ba002 (diff)
downloadsamba-e754760d2346cb868182b479745ee60630188298.tar.gz
samba-e754760d2346cb868182b479745ee60630188298.tar.bz2
samba-e754760d2346cb868182b479745ee60630188298.zip
r892: Actually add the NTLMSSP self-check torture code this time...
Andrew Bartlett (This used to be commit 9df5cbbd7694202c17a7c47ed0469d6f80412c54)
Diffstat (limited to 'source4')
-rw-r--r--source4/torture/auth/ntlmssp.c57
-rw-r--r--source4/torture/config.mk4
-rw-r--r--source4/torture/torture.c2
3 files changed, 60 insertions, 3 deletions
diff --git a/source4/torture/auth/ntlmssp.c b/source4/torture/auth/ntlmssp.c
new file mode 100644
index 0000000000..1fa2d49ba5
--- /dev/null
+++ b/source4/torture/auth/ntlmssp.c
@@ -0,0 +1,57 @@
+/*
+ Unix SMB/CIFS implementation.
+ basic raw test suite for change notify
+ Copyright (C) Andrew Bartlett <abartlet@samba.org> 2004
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "includes.h"
+
+BOOL torture_ntlmssp_self_check(int dummy)
+{
+ NTLMSSP_STATE *ntlmssp_state;
+ DATA_BLOB data;
+ DATA_BLOB sig, expected_sig;
+ NTSTATUS status;
+
+ if (!NT_STATUS_IS_OK(ntlmssp_client_start(&ntlmssp_state))) {
+ return False;
+ }
+
+ ntlmssp_state->session_key = strhex_to_data_blob("0102030405060708090a0b0c0d0e0f00");
+ dump_data_pw("NTLMSSP session key: \n",
+ ntlmssp_state->session_key.data,
+ ntlmssp_state->session_key.length);
+
+ ntlmssp_state->server_use_session_keys = True;
+ ntlmssp_state->neg_flags = NTLMSSP_NEGOTIATE_UNICODE | NTLMSSP_NEGOTIATE_128 | NTLMSSP_NEGOTIATE_KEY_EXCH | NTLMSSP_NEGOTIATE_NTLM2;
+
+ if (!NT_STATUS_IS_OK(status = ntlmssp_sign_init(ntlmssp_state))) {
+ printf("Failed to sign_init: %s\n", nt_errstr(status));
+ return False;
+ }
+
+ data = strhex_to_data_blob("6a43494653");
+ ntlmssp_sign_packet(ntlmssp_state, ntlmssp_state->mem_ctx,
+ data.data, data.length, &sig);
+
+ expected_sig = strhex_to_data_blob("01000000e37f97f2544f4d7e00000000");
+
+ dump_data_pw("NTLMSSP sig: ", sig.data, sig.length);
+ dump_data_pw("NTLMSSP sig: ", expected_sig.data, expected_sig.length);
+
+ return True;
+}
diff --git a/source4/torture/config.mk b/source4/torture/config.mk
index febe02500c..4bbcf21b58 100644
--- a/source4/torture/config.mk
+++ b/source4/torture/config.mk
@@ -70,8 +70,8 @@ REQUIRED_SUBSYSTEMS = \
#################################
# Start SUBSYSTEM TORTURE_AUTH
[SUBSYSTEM::TORTURE_AUTH]
-#ADD_OBJ_FILES = \
-# torture/auth/ntlmssp.o
+ADD_OBJ_FILES = \
+ torture/auth/ntlmssp.o
REQUIRED_SUBSYSTEMS = \
LIBSMB
# End SUBSYSTEM TORTURE_AUTH
diff --git a/source4/torture/torture.c b/source4/torture/torture.c
index 7351f42c8b..266f543f1b 100644
--- a/source4/torture/torture.c
+++ b/source4/torture/torture.c
@@ -4140,7 +4140,7 @@ static struct {
{"RPC-MGMT", torture_rpc_mgmt, 0},
{"RPC-SCANNER", torture_rpc_scanner, 0},
{"RPC-AUTOIDL", torture_rpc_autoidl, 0},
-/* {"NTLMSSP-SELFCHECK", torture_ntlmssp_self_check, 0},*/
+ {"NTLMSSP-SELFCHECK", torture_ntlmssp_self_check, 0},
{NULL, NULL, 0}};