2 Unix SMB/CIFS implementation.
4 test suite for netlogon SamLogon operations
6 Copyright (C) Andrew Tridgell 2003
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2003-2004
8 Copyright (C) Tim Potter 2003
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include "librpc/gen_ndr/ndr_netlogon.h"
27 #include "auth/auth.h"
28 #include "lib/crypto/crypto.h"
29 #include "lib/cmdline/popt_common.h"
31 #define TEST_MACHINE_NAME "samlogontest"
32 #define TEST_USER_NAME "samlogontestuser"
43 struct samlogon_state {
45 const char *account_name;
46 const char *account_domain;
48 struct dcerpc_pipe *p;
50 struct netr_LogonSamLogon r;
51 struct netr_LogonSamLogonEx r_ex;
52 struct netr_LogonSamLogonWithFlags r_flags;
53 struct netr_Authenticator auth, auth2;
54 struct creds_CredentialState *creds;
60 Authenticate a user with a challenge/response, checking session key
61 and valid authentication types
63 static NTSTATUS check_samlogon(struct samlogon_state *samlogon_state,
64 enum ntlm_break break_which,
66 DATA_BLOB *lm_response,
67 DATA_BLOB *nt_response,
69 uint8_t user_session_key[16],
73 struct netr_LogonSamLogon *r = &samlogon_state->r;
74 struct netr_LogonSamLogonEx *r_ex = &samlogon_state->r_ex;
75 struct netr_LogonSamLogonWithFlags *r_flags = &samlogon_state->r_flags;
76 struct netr_NetworkInfo ninfo;
77 struct netr_SamBaseInfo *base = NULL;
78 uint16_t validation_level = 0;
80 samlogon_state->r.in.logon.network = &ninfo;
81 samlogon_state->r_ex.in.logon.network = &ninfo;
82 samlogon_state->r_flags.in.logon.network = &ninfo;
84 ninfo.identity_info.domain_name.string = samlogon_state->account_domain;
85 ninfo.identity_info.parameter_control = 0;
86 ninfo.identity_info.logon_id_low = 0;
87 ninfo.identity_info.logon_id_high = 0;
88 ninfo.identity_info.account_name.string = samlogon_state->account_name;
89 ninfo.identity_info.workstation.string = TEST_MACHINE_NAME;
91 memcpy(ninfo.challenge, chall->data, 8);
93 switch (break_which) {
97 if (lm_response && lm_response->data) {
98 lm_response->data[0]++;
102 if (nt_response && nt_response->data) {
103 nt_response->data[0]++;
107 if (lm_response && lm_response->data) {
108 lm_response->data[0]++;
110 if (nt_response && nt_response->data) {
111 nt_response->data[0]++;
115 data_blob_free(lm_response);
118 data_blob_free(nt_response);
123 ninfo.nt.data = nt_response->data;
124 ninfo.nt.length = nt_response->length;
126 ninfo.nt.data = NULL;
131 ninfo.lm.data = lm_response->data;
132 ninfo.lm.length = lm_response->length;
134 ninfo.lm.data = NULL;
138 switch (samlogon_state->function_level) {
139 case DCERPC_NETR_LOGONSAMLOGON:
140 ZERO_STRUCT(samlogon_state->auth2);
141 creds_client_authenticator(samlogon_state->creds, &samlogon_state->auth);
143 r->out.return_authenticator = NULL;
144 status = dcerpc_netr_LogonSamLogon(samlogon_state->p, samlogon_state->mem_ctx, r);
145 if (!r->out.return_authenticator ||
146 !creds_client_check(samlogon_state->creds, &r->out.return_authenticator->cred)) {
147 printf("Credential chaining failed\n");
149 if (!NT_STATUS_IS_OK(status)) {
151 *error_string = strdup(nt_errstr(status));
155 validation_level = r->in.validation_level;
156 switch (validation_level) {
158 base = &r->out.validation.sam2->base;
161 base = &r->out.validation.sam3->base;
164 base = &r->out.validation.sam6->base;
168 case DCERPC_NETR_LOGONSAMLOGONEX:
169 status = dcerpc_netr_LogonSamLogonEx(samlogon_state->p, samlogon_state->mem_ctx, r_ex);
170 if (!NT_STATUS_IS_OK(status)) {
172 *error_string = strdup(nt_errstr(status));
176 validation_level = r_ex->in.validation_level;
177 switch (validation_level) {
179 base = &r_ex->out.validation.sam2->base;
182 base = &r_ex->out.validation.sam3->base;
185 base = &r_ex->out.validation.sam6->base;
189 case DCERPC_NETR_LOGONSAMLOGONWITHFLAGS:
190 ZERO_STRUCT(samlogon_state->auth2);
191 creds_client_authenticator(samlogon_state->creds, &samlogon_state->auth);
193 r_flags->out.return_authenticator = NULL;
194 status = dcerpc_netr_LogonSamLogonWithFlags(samlogon_state->p, samlogon_state->mem_ctx, r_flags);
195 if (!r_flags->out.return_authenticator ||
196 !creds_client_check(samlogon_state->creds, &r_flags->out.return_authenticator->cred)) {
197 printf("Credential chaining failed\n");
199 if (!NT_STATUS_IS_OK(status)) {
201 *error_string = strdup(nt_errstr(status));
205 validation_level = r_flags->in.validation_level;
206 switch (validation_level) {
208 base = &r_flags->out.validation.sam2->base;
211 base = &r_flags->out.validation.sam3->base;
214 base = &r_flags->out.validation.sam6->base;
221 if (!NT_STATUS_IS_OK(status)) {
222 /* we cannot check the session key, if the logon failed... */
227 printf("No user info returned from 'successful' SamLogon*() call!\n");
228 return NT_STATUS_INVALID_PARAMETER;
231 /* find and decyrpt the session keys, return in parameters above */
232 if (validation_level == 6) {
233 /* they aren't encrypted! */
234 if (user_session_key) {
235 memcpy(user_session_key, base->key.key, 16);
238 memcpy(lm_key, base->LMSessKey.key, 8);
240 } else if (samlogon_state->creds->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
241 static const char zeros[16];
243 if (memcmp(base->key.key, zeros,
244 sizeof(base->key.key)) != 0) {
245 creds_arcfour_crypt(samlogon_state->creds,
247 sizeof(base->key.key));
250 if (user_session_key) {
251 memcpy(user_session_key, base->key.key, 16);
254 if (memcmp(base->LMSessKey.key, zeros,
255 sizeof(base->LMSessKey.key)) != 0) {
256 creds_arcfour_crypt(samlogon_state->creds,
258 sizeof(base->LMSessKey.key));
262 memcpy(lm_key, base->LMSessKey.key, 8);
265 static const char zeros[16];
267 if (user_session_key) {
268 memcpy(user_session_key, base->key.key, 16);
271 if (memcmp(base->LMSessKey.key, zeros,
272 sizeof(base->LMSessKey.key)) != 0) {
273 creds_des_decrypt_LMKey(samlogon_state->creds,
278 memcpy(lm_key, base->LMSessKey.key, 8);
287 * Test the normal 'LM and NTLM' combination
290 static BOOL test_lm_ntlm_broken(struct samlogon_state *samlogon_state, enum ntlm_break break_which, char **error_string)
295 DATA_BLOB lm_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
296 DATA_BLOB nt_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
297 DATA_BLOB session_key = data_blob_talloc(samlogon_state->mem_ctx, NULL, 16);
300 uint8_t user_session_key[16];
305 ZERO_STRUCT(user_session_key);
307 lm_good = SMBencrypt(samlogon_state->password, samlogon_state->chall.data, lm_response.data);
309 ZERO_STRUCT(lm_hash);
311 E_deshash(samlogon_state->password, lm_hash);
314 SMBNTencrypt(samlogon_state->password, samlogon_state->chall.data, nt_response.data);
316 E_md4hash(samlogon_state->password, nt_hash);
317 SMBsesskeygen_ntv1(nt_hash, session_key.data);
319 nt_status = check_samlogon(samlogon_state,
321 &samlogon_state->chall,
328 data_blob_free(&lm_response);
330 if (NT_STATUS_EQUAL(NT_STATUS_WRONG_PASSWORD, nt_status)) {
331 /* for 'long' passwords, the LM password is invalid */
332 if (break_which == NO_NT && !lm_good) {
335 return ((break_which == BREAK_NT) || (break_which == BREAK_BOTH));
338 if (!NT_STATUS_IS_OK(nt_status)) {
342 if (break_which == NO_NT && !lm_good) {
343 printf("LM password is 'long' (> 14 chars and therefore invalid) but login did not fail!");
347 if (memcmp(lm_hash, lm_key,
348 sizeof(lm_key)) != 0) {
349 printf("LM Key does not match expectations!\n");
351 dump_data(1, lm_key, 8);
352 printf("expected:\n");
353 dump_data(1, lm_hash, 8);
357 switch (break_which) {
360 uint8_t lm_key_expected[16];
361 memcpy(lm_key_expected, lm_hash, 8);
362 memset(lm_key_expected+8, '\0', 8);
363 if (memcmp(lm_key_expected, user_session_key,
365 printf("NT Session Key does not match expectations (should be first-8 LM hash)!\n");
366 printf("user_session_key:\n");
367 dump_data(1, user_session_key, sizeof(user_session_key));
368 printf("expected:\n");
369 dump_data(1, lm_key_expected, sizeof(lm_key_expected));
375 if (memcmp(session_key.data, user_session_key,
376 sizeof(user_session_key)) != 0) {
377 printf("NT Session Key does not match expectations!\n");
378 printf("user_session_key:\n");
379 dump_data(1, user_session_key, 16);
380 printf("expected:\n");
381 dump_data(1, session_key.data, session_key.length);
389 * Test LM authentication, no NT response supplied
392 static BOOL test_lm(struct samlogon_state *samlogon_state, char **error_string)
395 return test_lm_ntlm_broken(samlogon_state, NO_NT, error_string);
399 * Test the NTLM response only, no LM.
402 static BOOL test_ntlm(struct samlogon_state *samlogon_state, char **error_string)
404 return test_lm_ntlm_broken(samlogon_state, NO_LM, error_string);
408 * Test the NTLM response only, but in the LM field.
411 static BOOL test_ntlm_in_lm(struct samlogon_state *samlogon_state, char **error_string)
415 DATA_BLOB nt_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
419 uint8_t user_session_key[16];
421 ZERO_STRUCT(user_session_key);
423 SMBNTencrypt(samlogon_state->password, samlogon_state->chall.data, nt_response.data);
425 E_deshash(samlogon_state->password, lm_hash);
427 nt_status = check_samlogon(samlogon_state,
429 &samlogon_state->chall,
436 if (!NT_STATUS_IS_OK(nt_status)) {
440 if (memcmp(lm_hash, lm_key,
441 sizeof(lm_key)) != 0) {
442 printf("LM Key does not match expectations!\n");
444 dump_data(1, lm_key, 8);
445 printf("expected:\n");
446 dump_data(1, lm_hash, 8);
449 if (memcmp(lm_hash, user_session_key, 8) != 0) {
450 uint8_t lm_key_expected[16];
451 memcpy(lm_key_expected, lm_hash, 8);
452 memset(lm_key_expected+8, '\0', 8);
453 if (memcmp(lm_key_expected, user_session_key,
455 printf("NT Session Key does not match expectations (should be first-8 LM hash)!\n");
456 printf("user_session_key:\n");
457 dump_data(1, user_session_key, sizeof(user_session_key));
458 printf("expected:\n");
459 dump_data(1, lm_key_expected, sizeof(lm_key_expected));
467 * Test the NTLM response only, but in the both the NT and LM fields.
470 static BOOL test_ntlm_in_both(struct samlogon_state *samlogon_state, char **error_string)
475 DATA_BLOB nt_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
476 DATA_BLOB session_key = data_blob_talloc(samlogon_state->mem_ctx, NULL, 16);
480 uint8_t user_session_key[16];
484 ZERO_STRUCT(user_session_key);
486 SMBNTencrypt(samlogon_state->password, samlogon_state->chall.data,
488 E_md4hash(samlogon_state->password, nt_hash);
489 SMBsesskeygen_ntv1(nt_hash,
492 lm_good = E_deshash(samlogon_state->password, lm_hash);
494 ZERO_STRUCT(lm_hash);
497 nt_status = check_samlogon(samlogon_state,
499 &samlogon_state->chall,
506 if (!NT_STATUS_IS_OK(nt_status)) {
510 if (memcmp(lm_hash, lm_key,
511 sizeof(lm_key)) != 0) {
512 printf("LM Key does not match expectations!\n");
514 dump_data(1, lm_key, 8);
515 printf("expected:\n");
516 dump_data(1, lm_hash, 8);
519 if (memcmp(session_key.data, user_session_key,
520 sizeof(user_session_key)) != 0) {
521 printf("NT Session Key does not match expectations!\n");
522 printf("user_session_key:\n");
523 dump_data(1, user_session_key, 16);
524 printf("expected:\n");
525 dump_data(1, session_key.data, session_key.length);
534 * Test the NTLMv2 and LMv2 responses
537 static BOOL test_lmv2_ntlmv2_broken(struct samlogon_state *samlogon_state, enum ntlm_break break_which, char **error_string)
541 DATA_BLOB ntlmv2_response = data_blob(NULL, 0);
542 DATA_BLOB lmv2_response = data_blob(NULL, 0);
543 DATA_BLOB lmv2_session_key = data_blob(NULL, 0);
544 DATA_BLOB ntlmv2_session_key = data_blob(NULL, 0);
545 DATA_BLOB names_blob = NTLMv2_generate_names_blob(samlogon_state->mem_ctx, lp_netbios_name(), lp_workgroup());
547 uint8_t lm_session_key[8];
548 uint8_t user_session_key[16];
550 ZERO_STRUCT(lm_session_key);
551 ZERO_STRUCT(user_session_key);
553 /* TODO - test with various domain cases, and without domain */
554 if (!SMBNTLMv2encrypt(samlogon_state->account_name, samlogon_state->account_domain,
555 samlogon_state->password, &samlogon_state->chall,
557 &lmv2_response, &ntlmv2_response,
558 &lmv2_session_key, &ntlmv2_session_key)) {
559 data_blob_free(&names_blob);
562 data_blob_free(&names_blob);
564 nt_status = check_samlogon(samlogon_state,
566 &samlogon_state->chall,
573 data_blob_free(&lmv2_response);
574 data_blob_free(&ntlmv2_response);
577 if (NT_STATUS_EQUAL(nt_status, NT_STATUS_WRONG_PASSWORD)) {
578 return break_which == BREAK_BOTH;
581 if (!NT_STATUS_IS_OK(nt_status)) {
585 switch (break_which) {
587 if (memcmp(lmv2_session_key.data, user_session_key,
588 sizeof(user_session_key)) != 0) {
589 printf("USER (LMv2) Session Key does not match expectations!\n");
590 printf("user_session_key:\n");
591 dump_data(1, user_session_key, 16);
592 printf("expected:\n");
593 dump_data(1, lmv2_session_key.data, ntlmv2_session_key.length);
596 if (memcmp(lmv2_session_key.data, lm_session_key,
597 sizeof(lm_session_key)) != 0) {
598 printf("LM (LMv2) Session Key does not match expectations!\n");
599 printf("lm_session_key:\n");
600 dump_data(1, lm_session_key, 8);
601 printf("expected:\n");
602 dump_data(1, lmv2_session_key.data, 8);
607 if (memcmp(ntlmv2_session_key.data, user_session_key,
608 sizeof(user_session_key)) != 0) {
609 if (memcmp(lmv2_session_key.data, user_session_key,
610 sizeof(user_session_key)) == 0) {
611 printf("USER (NTLMv2) Session Key expected, got LMv2 sessesion key instead:\n");
612 printf("user_session_key:\n");
613 dump_data(1, user_session_key, 16);
614 printf("expected:\n");
615 dump_data(1, ntlmv2_session_key.data, ntlmv2_session_key.length);
619 printf("USER (NTLMv2) Session Key does not match expectations!\n");
620 printf("user_session_key:\n");
621 dump_data(1, user_session_key, 16);
622 printf("expected:\n");
623 dump_data(1, ntlmv2_session_key.data, ntlmv2_session_key.length);
627 if (memcmp(ntlmv2_session_key.data, lm_session_key,
628 sizeof(lm_session_key)) != 0) {
629 if (memcmp(lmv2_session_key.data, lm_session_key,
630 sizeof(lm_session_key)) == 0) {
631 printf("LM (NTLMv2) Session Key expected, got LMv2 sessesion key instead:\n");
632 printf("user_session_key:\n");
633 dump_data(1, lm_session_key, 8);
634 printf("expected:\n");
635 dump_data(1, ntlmv2_session_key.data, 8);
638 printf("LM (NTLMv2) Session Key does not match expectations!\n");
639 printf("lm_session_key:\n");
640 dump_data(1, lm_session_key, 8);
641 printf("expected:\n");
642 dump_data(1, ntlmv2_session_key.data, 8);
652 * Test the NTLM and LMv2 responses
655 static BOOL test_lmv2_ntlm_broken(struct samlogon_state *samlogon_state, enum ntlm_break break_which, char **error_string)
659 DATA_BLOB ntlmv2_response = data_blob(NULL, 0);
660 DATA_BLOB lmv2_response = data_blob(NULL, 0);
661 DATA_BLOB lmv2_session_key = data_blob(NULL, 0);
662 DATA_BLOB ntlmv2_session_key = data_blob(NULL, 0);
663 DATA_BLOB names_blob = NTLMv2_generate_names_blob(samlogon_state->mem_ctx, lp_netbios_name(), lp_workgroup());
665 DATA_BLOB ntlm_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
666 DATA_BLOB ntlm_session_key = data_blob_talloc(samlogon_state->mem_ctx, NULL, 16);
669 uint8_t lm_session_key[8];
670 uint8_t user_session_key[16];
673 SMBNTencrypt(samlogon_state->password, samlogon_state->chall.data,
675 E_md4hash(samlogon_state->password, nt_hash);
676 SMBsesskeygen_ntv1(nt_hash,
677 ntlm_session_key.data);
678 E_deshash(samlogon_state->password, lm_hash);
680 ZERO_STRUCT(lm_session_key);
681 ZERO_STRUCT(user_session_key);
683 /* TODO - test with various domain cases, and without domain */
684 if (!SMBNTLMv2encrypt(samlogon_state->account_name, samlogon_state->account_domain,
685 samlogon_state->password, &samlogon_state->chall,
687 &lmv2_response, &ntlmv2_response,
688 &lmv2_session_key, &ntlmv2_session_key)) {
689 data_blob_free(&names_blob);
692 data_blob_free(&names_blob);
694 nt_status = check_samlogon(samlogon_state,
696 &samlogon_state->chall,
703 data_blob_free(&lmv2_response);
704 data_blob_free(&ntlmv2_response);
707 if (NT_STATUS_EQUAL(NT_STATUS_WRONG_PASSWORD, nt_status)) {
708 return ((break_which == BREAK_NT) || (break_which == BREAK_BOTH));
711 if (!NT_STATUS_IS_OK(nt_status)) {
715 switch (break_which) {
717 if (memcmp(lmv2_session_key.data, user_session_key,
718 sizeof(user_session_key)) != 0) {
719 printf("USER (LMv2) Session Key does not match expectations!\n");
720 printf("user_session_key:\n");
721 dump_data(1, user_session_key, 16);
722 printf("expected:\n");
723 dump_data(1, lmv2_session_key.data, ntlmv2_session_key.length);
726 if (memcmp(lmv2_session_key.data, lm_session_key,
727 sizeof(lm_session_key)) != 0) {
728 printf("LM (LMv2) Session Key does not match expectations!\n");
729 printf("lm_session_key:\n");
730 dump_data(1, lm_session_key, 8);
731 printf("expected:\n");
732 dump_data(1, lmv2_session_key.data, 8);
737 if (memcmp(ntlm_session_key.data, user_session_key,
738 sizeof(user_session_key)) != 0) {
739 printf("USER (NTLMv2) Session Key does not match expectations!\n");
740 printf("user_session_key:\n");
741 dump_data(1, user_session_key, 16);
742 printf("expected:\n");
743 dump_data(1, ntlm_session_key.data, ntlm_session_key.length);
746 if (memcmp(lm_hash, lm_session_key,
747 sizeof(lm_session_key)) != 0) {
748 printf("LM Session Key does not match expectations!\n");
749 printf("lm_session_key:\n");
750 dump_data(1, lm_session_key, 8);
751 printf("expected:\n");
752 dump_data(1, lm_hash, 8);
757 if (memcmp(ntlm_session_key.data, user_session_key,
758 sizeof(user_session_key)) != 0) {
759 printf("USER (NTLMv2) Session Key does not match expectations!\n");
760 printf("user_session_key:\n");
761 dump_data(1, user_session_key, 16);
762 printf("expected:\n");
763 dump_data(1, ntlm_session_key.data, ntlm_session_key.length);
766 if (memcmp(ntlm_session_key.data, lm_session_key,
767 sizeof(lm_session_key)) != 0) {
768 printf("LM (NTLMv2) Session Key does not match expectations!\n");
769 printf("lm_session_key:\n");
770 dump_data(1, lm_session_key, 8);
771 printf("expected:\n");
772 dump_data(1, ntlm_session_key.data, 8);
781 * Test the NTLMv2 and LMv2 responses
784 static BOOL test_lmv2_ntlmv2(struct samlogon_state *samlogon_state, char **error_string)
786 return test_lmv2_ntlmv2_broken(samlogon_state, BREAK_NONE, error_string);
790 * Test the LMv2 response only
793 static BOOL test_lmv2(struct samlogon_state *samlogon_state, char **error_string)
795 return test_lmv2_ntlmv2_broken(samlogon_state, NO_NT, error_string);
799 * Test the NTLMv2 response only
802 static BOOL test_ntlmv2(struct samlogon_state *samlogon_state, char **error_string)
804 return test_lmv2_ntlmv2_broken(samlogon_state, NO_LM, error_string);
807 static BOOL test_lm_ntlm(struct samlogon_state *samlogon_state, char **error_string)
809 return test_lm_ntlm_broken(samlogon_state, BREAK_NONE, error_string);
812 static BOOL test_ntlm_lm_broken(struct samlogon_state *samlogon_state, char **error_string)
814 return test_lm_ntlm_broken(samlogon_state, BREAK_LM, error_string);
817 static BOOL test_ntlm_ntlm_broken(struct samlogon_state *samlogon_state, char **error_string)
819 return test_lm_ntlm_broken(samlogon_state, BREAK_NT, error_string);
822 static BOOL test_lm_ntlm_both_broken(struct samlogon_state *samlogon_state, char **error_string)
824 return test_lm_ntlm_broken(samlogon_state, BREAK_BOTH, error_string);
826 static BOOL test_ntlmv2_lmv2_broken(struct samlogon_state *samlogon_state, char **error_string)
828 return test_lmv2_ntlmv2_broken(samlogon_state, BREAK_LM, error_string);
831 static BOOL test_ntlmv2_ntlmv2_broken(struct samlogon_state *samlogon_state, char **error_string)
833 return test_lmv2_ntlmv2_broken(samlogon_state, BREAK_NT, error_string);
836 static BOOL test_ntlmv2_both_broken(struct samlogon_state *samlogon_state, char **error_string)
838 return test_lmv2_ntlmv2_broken(samlogon_state, BREAK_BOTH, error_string);
841 static BOOL test_lmv2_ntlm_both_broken(struct samlogon_state *samlogon_state, char **error_string)
843 return test_lmv2_ntlm_broken(samlogon_state, BREAK_BOTH, error_string);
846 static BOOL test_lmv2_ntlm_break_ntlm(struct samlogon_state *samlogon_state, char **error_string)
848 return test_lmv2_ntlm_broken(samlogon_state, BREAK_NT, error_string);
851 static BOOL test_lmv2_ntlm_break_lm(struct samlogon_state *samlogon_state, char **error_string)
853 return test_lmv2_ntlm_broken(samlogon_state, BREAK_LM, error_string);
857 * Test the NTLM2 response (extra challenge in LM feild)
859 * This test is the same as the 'break LM' test, but checks that the
860 * server implements NTLM2 session security in the right place
861 * (NETLOGON is the wrong place).
864 static BOOL test_ntlm2(struct samlogon_state *samlogon_state, char **error_string)
868 DATA_BLOB lm_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
869 DATA_BLOB nt_response = data_blob_talloc(samlogon_state->mem_ctx, NULL, 24);
875 uint8_t user_session_key[16];
876 uint8_t expected_user_session_key[16];
877 uint8_t session_nonce_hash[16];
878 uint8_t client_chall[8];
880 struct MD5Context md5_session_nonce_ctx;
881 HMACMD5Context hmac_ctx;
883 ZERO_STRUCT(user_session_key);
885 generate_random_buffer(client_chall, 8);
887 MD5Init(&md5_session_nonce_ctx);
888 MD5Update(&md5_session_nonce_ctx, samlogon_state->chall.data, 8);
889 MD5Update(&md5_session_nonce_ctx, client_chall, 8);
890 MD5Final(session_nonce_hash, &md5_session_nonce_ctx);
892 E_md4hash(samlogon_state->password, (uint8_t *)nt_hash);
893 E_deshash(samlogon_state->password, (uint8_t *)lm_hash);
894 SMBsesskeygen_ntv1((const uint8_t *)nt_hash,
897 SMBNTencrypt(samlogon_state->password, samlogon_state->chall.data, nt_response.data);
899 memcpy(lm_response.data, session_nonce_hash, 8);
900 memset(lm_response.data + 8, 0, 16);
902 hmac_md5_init_rfc2104(nt_key, 16, &hmac_ctx);
903 hmac_md5_update(samlogon_state->chall.data, 8, &hmac_ctx);
904 hmac_md5_update(client_chall, 8, &hmac_ctx);
905 hmac_md5_final(expected_user_session_key, &hmac_ctx);
907 nt_status = check_samlogon(samlogon_state,
909 &samlogon_state->chall,
916 if (!NT_STATUS_IS_OK(nt_status)) {
920 if (memcmp(lm_hash, lm_key,
921 sizeof(lm_key)) != 0) {
922 printf("LM Key does not match expectations!\n");
924 dump_data(1, lm_key, 8);
925 printf("expected:\n");
926 dump_data(1, lm_hash, 8);
929 if (memcmp(nt_key, user_session_key, 16) != 0) {
930 printf("NT Session Key does not match expectations (should be first-8 LM hash)!\n");
931 printf("user_session_key:\n");
932 dump_data(1, user_session_key, sizeof(user_session_key));
933 printf("expected:\n");
934 dump_data(1, nt_key, sizeof(nt_key));
940 static BOOL test_plaintext(struct samlogon_state *samlogon_state, enum ntlm_break break_which, char **error_string)
943 DATA_BLOB nt_response = data_blob(NULL, 0);
944 DATA_BLOB lm_response = data_blob(NULL, 0);
949 uint8_t user_session_key[16];
951 static const uint8_t zeros[8];
952 DATA_BLOB chall = data_blob_talloc(samlogon_state->mem_ctx, zeros, sizeof(zeros));
954 ZERO_STRUCT(user_session_key);
956 if ((push_ucs2_talloc(samlogon_state->mem_ctx, &unicodepw,
957 samlogon_state->password)) == -1) {
958 DEBUG(0, ("push_ucs2_allocate failed!\n"));
962 nt_response = data_blob_talloc(samlogon_state->mem_ctx, unicodepw, strlen_m(samlogon_state->password)*2);
964 password = strupper_talloc(samlogon_state->mem_ctx, samlogon_state->password);
966 if ((convert_string_talloc(samlogon_state->mem_ctx, CH_UNIX,
969 (void**)&dospw)) == -1) {
970 DEBUG(0, ("convert_string_talloc failed!\n"));
974 lm_response = data_blob_talloc(samlogon_state->mem_ctx, dospw, strlen(dospw));
976 nt_status = check_samlogon(samlogon_state,
985 if (!NT_STATUS_IS_OK(nt_status)) {
986 return break_which == BREAK_NT;
992 static BOOL test_plaintext_none_broken(struct samlogon_state *samlogon_state,
993 char **error_string) {
994 return test_plaintext(samlogon_state, BREAK_NONE, error_string);
997 static BOOL test_plaintext_lm_broken(struct samlogon_state *samlogon_state,
998 char **error_string) {
999 return test_plaintext(samlogon_state, BREAK_LM, error_string);
1002 static BOOL test_plaintext_nt_broken(struct samlogon_state *samlogon_state,
1003 char **error_string) {
1004 return test_plaintext(samlogon_state, BREAK_NT, error_string);
1007 static BOOL test_plaintext_nt_only(struct samlogon_state *samlogon_state,
1008 char **error_string) {
1009 return test_plaintext(samlogon_state, NO_LM, error_string);
1012 static BOOL test_plaintext_lm_only(struct samlogon_state *samlogon_state,
1013 char **error_string) {
1014 return test_plaintext(samlogon_state, NO_NT, error_string);
1028 - plaintext tests (in challenge-response fields)
1030 check we get the correct session key in each case
1031 check what values we get for the LM session key
1035 static const struct ntlm_tests {
1036 BOOL (*fn)(struct samlogon_state *, char **);
1040 {test_lmv2_ntlmv2, "NTLMv2 and LMv2", False},
1041 {test_lm, "LM", False},
1042 {test_lm_ntlm, "LM and NTLM", False},
1043 {test_lm_ntlm_both_broken, "LM and NTLM, both broken", False},
1044 {test_ntlm, "NTLM", False},
1045 {test_ntlm_in_lm, "NTLM in LM", False},
1046 {test_ntlm_in_both, "NTLM in both", False},
1047 {test_ntlmv2, "NTLMv2", False},
1048 {test_lmv2, "LMv2", False},
1049 {test_ntlmv2_lmv2_broken, "NTLMv2 and LMv2, LMv2 broken", False},
1050 {test_ntlmv2_ntlmv2_broken, "NTLMv2 and LMv2, NTLMv2 broken", False},
1051 {test_ntlmv2_both_broken, "NTLMv2 and LMv2, both broken", False},
1052 {test_ntlm_lm_broken, "NTLM and LM, LM broken", False},
1053 {test_ntlm_ntlm_broken, "NTLM and LM, NTLM broken", False},
1054 {test_ntlm2, "NTLM2 (NTLMv2 session security)", False},
1055 {test_lmv2_ntlm_both_broken, "LMv2 and NTLM, both broken", False},
1056 {test_lmv2_ntlm_break_ntlm, "LMv2 and NTLM, NTLM broken", False},
1057 {test_lmv2_ntlm_break_lm, "LMv2 and NTLM, LMv2 broken", False},
1058 {test_plaintext_none_broken, "Plaintext", True},
1059 {test_plaintext_lm_broken, "Plaintext LM broken", True},
1060 {test_plaintext_nt_broken, "Plaintext NT broken", True},
1061 {test_plaintext_nt_only, "Plaintext NT only", True},
1062 {test_plaintext_lm_only, "Plaintext LM only", True},
1067 try a netlogon SamLogon
1069 static BOOL test_SamLogon(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
1070 struct creds_CredentialState *creds,
1071 const char *account_domain, const char *account_name,
1072 const char *plain_pass,
1075 TALLOC_CTX *fn_ctx = talloc_named(mem_ctx, 0, "test_SamLogon function-level context");
1078 int validation_levels[] = {2,3,6};
1079 int logon_levels[] = { 2, 6 };
1080 int function_levels[] = {
1081 DCERPC_NETR_LOGONSAMLOGON,
1082 DCERPC_NETR_LOGONSAMLOGONEX,
1083 DCERPC_NETR_LOGONSAMLOGONWITHFLAGS };
1084 struct samlogon_state samlogon_state;
1086 printf("testing netr_LogonSamLogon and netr_LogonSamLogonWithFlags\n");
1088 samlogon_state.account_name = account_name;
1089 samlogon_state.account_domain = account_domain;
1090 samlogon_state.password = plain_pass;
1091 samlogon_state.p = p;
1092 samlogon_state.creds = creds;
1094 samlogon_state.chall = data_blob_talloc(fn_ctx, NULL, 8);
1096 generate_random_buffer(samlogon_state.chall.data, 8);
1097 samlogon_state.r_flags.in.server_name = talloc_asprintf(fn_ctx, "\\\\%s", dcerpc_server_name(p));
1098 samlogon_state.r_flags.in.workstation = TEST_MACHINE_NAME;
1099 samlogon_state.r_flags.in.credential = &samlogon_state.auth;
1100 samlogon_state.r_flags.in.return_authenticator = &samlogon_state.auth2;
1101 samlogon_state.r_flags.in.flags = 0;
1103 samlogon_state.r_ex.in.server_name = talloc_asprintf(fn_ctx, "\\\\%s", dcerpc_server_name(p));
1104 samlogon_state.r_ex.in.workstation = TEST_MACHINE_NAME;
1105 samlogon_state.r_ex.in.flags = 0;
1107 samlogon_state.r.in.server_name = talloc_asprintf(fn_ctx, "\\\\%s", dcerpc_server_name(p));
1108 samlogon_state.r.in.workstation = TEST_MACHINE_NAME;
1109 samlogon_state.r.in.credential = &samlogon_state.auth;
1110 samlogon_state.r.in.return_authenticator = &samlogon_state.auth2;
1112 for (f=0;f<ARRAY_SIZE(function_levels);f++) {
1113 for (i=0; test_table[i].fn; i++) {
1114 if (n_subtests && (i > n_subtests)) {
1117 for (v=0;v<ARRAY_SIZE(validation_levels);v++) {
1118 for (l=0;l<ARRAY_SIZE(logon_levels);l++) {
1119 char *error_string = NULL;
1120 TALLOC_CTX *tmp_ctx = talloc_named(fn_ctx, 0, "test_SamLogon inner loop");
1121 samlogon_state.mem_ctx = tmp_ctx;
1122 samlogon_state.function_level = function_levels[f];
1123 samlogon_state.r.in.validation_level = validation_levels[v];
1124 samlogon_state.r.in.logon_level = logon_levels[l];
1125 samlogon_state.r_ex.in.validation_level = validation_levels[v];
1126 samlogon_state.r_ex.in.logon_level = logon_levels[l];
1127 samlogon_state.r_flags.in.validation_level = validation_levels[v];
1128 samlogon_state.r_flags.in.logon_level = logon_levels[l];
1129 if (!test_table[i].fn(&samlogon_state, &error_string)) {
1130 printf("Testing [%s]\\[%s] '%s' at validation level %d, logon level %d, function %d: \n",
1131 samlogon_state.account_domain,
1132 samlogon_state.account_name,
1133 test_table[i].name, validation_levels[v],
1134 logon_levels[l], function_levels[f]);
1136 if (test_table[i].expect_fail) {
1137 printf(" failed (expected, test incomplete): %s\n", error_string);
1139 printf(" failed: %s\n", error_string);
1142 SAFE_FREE(error_string);
1144 talloc_free(tmp_ctx);
1149 talloc_free(fn_ctx);
1154 test an ADS style interactive domain logon
1156 static BOOL test_InteractiveLogon(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
1157 struct creds_CredentialState *creds,
1158 const char *account_domain, const char *account_name,
1159 const char *plain_pass)
1162 TALLOC_CTX *fn_ctx = talloc_named(mem_ctx, 0, "test_InteractiveLogon function-level context");
1163 struct netr_LogonSamLogonWithFlags r;
1164 struct netr_Authenticator a, ra;
1165 struct netr_PasswordInfo pinfo;
1171 creds_client_authenticator(creds, &a);
1173 r.in.server_name = talloc_asprintf(fn_ctx, "\\\\%s", dcerpc_server_name(p));
1174 r.in.workstation = TEST_MACHINE_NAME;
1175 r.in.credential = &a;
1176 r.in.return_authenticator = &ra;
1177 r.in.logon_level = 5;
1178 r.in.logon.password = &pinfo;
1179 r.in.validation_level = 6;
1182 pinfo.identity_info.domain_name.string = account_domain;
1183 pinfo.identity_info.parameter_control = 0;
1184 pinfo.identity_info.logon_id_low = 0;
1185 pinfo.identity_info.logon_id_high = 0;
1186 pinfo.identity_info.account_name.string = account_name;
1187 pinfo.identity_info.workstation.string = TEST_MACHINE_NAME;
1189 E_deshash(plain_pass, pinfo.lmpassword.hash);
1190 E_md4hash(plain_pass, pinfo.ntpassword.hash);
1192 if (creds->negotiate_flags & NETLOGON_NEG_ARCFOUR) {
1193 creds_arcfour_crypt(creds, pinfo.lmpassword.hash, 16);
1194 creds_arcfour_crypt(creds, pinfo.ntpassword.hash, 16);
1196 creds_des_encrypt(creds, &pinfo.lmpassword);
1197 creds_des_encrypt(creds, &pinfo.ntpassword);
1200 printf("Testing netr_LogonSamLogonWithFlags (Interactive Logon)\n");
1202 status = dcerpc_netr_LogonSamLogonWithFlags(p, fn_ctx, &r);
1203 if (!r.out.return_authenticator || !creds_client_check(creds, &r.out.return_authenticator->cred)) {
1204 printf("Credential chaining failed\n");
1205 talloc_free(fn_ctx);
1209 talloc_free(fn_ctx);
1211 if (!NT_STATUS_IS_OK(status)) {
1212 printf("[%s]\\[%s] netr_LogonSamLogonWithFlags - %s\n", account_name, account_domain, nt_errstr(status));
1221 BOOL torture_rpc_samlogon(void)
1224 struct dcerpc_pipe *p;
1225 struct dcerpc_binding *b;
1226 struct cli_credentials *credentials;
1227 TALLOC_CTX *mem_ctx = talloc_init("torture_rpc_netlogon");
1229 struct test_join *join_ctx;
1231 struct test_join *user_ctx;
1232 const char *user_password;
1234 char *test_machine_account;
1235 const char *machine_password;
1236 const char *binding = lp_parm_string(-1, "torture", "binding");
1240 unsigned int credential_flags[] = {
1241 NETLOGON_NEG_AUTH2_FLAGS,
1242 NETLOGON_NEG_ARCFOUR,
1243 NETLOGON_NEG_ARCFOUR | NETLOGON_NEG_128BIT,
1244 NETLOGON_NEG_AUTH2_ADS_FLAGS,
1245 0 /* yes, this is a valid flag, causes the use of DES */
1248 struct creds_CredentialState *creds;
1252 const char *username;
1253 const char *password;
1257 cli_credentials_get_domain(cmdline_credentials),
1258 cli_credentials_get_username(cmdline_credentials),
1259 cli_credentials_get_password(cmdline_credentials),
1263 cli_credentials_get_realm(cmdline_credentials),
1264 cli_credentials_get_username(cmdline_credentials),
1265 cli_credentials_get_password(cmdline_credentials),
1270 talloc_asprintf(mem_ctx,
1272 cli_credentials_get_username(cmdline_credentials),
1273 cli_credentials_get_domain(cmdline_credentials)
1275 cli_credentials_get_password(cmdline_credentials),
1280 talloc_asprintf(mem_ctx,
1282 cli_credentials_get_username(cmdline_credentials),
1283 cli_credentials_get_realm(cmdline_credentials)
1285 cli_credentials_get_password(cmdline_credentials),
1290 lp_parm_string(-1, "torture", "userdomain"),
1297 talloc_asprintf(mem_ctx,
1306 talloc_asprintf(mem_ctx,
1309 lp_parm_string(-1, "torture", "userdomain")),
1316 credentials = cli_credentials_init(mem_ctx);
1318 test_machine_account = talloc_asprintf(mem_ctx, "%s$", TEST_MACHINE_NAME);
1319 /* We only need to join as a workstation here, and in future,
1320 * if we wish to test against trusted domains, we must be a
1321 * workstation here */
1322 join_ctx = torture_create_testuser(test_machine_account, lp_workgroup(), ACB_WSTRUST,
1325 printf("Failed to join as Workstation\n");
1329 user_ctx = torture_create_testuser(TEST_USER_NAME,
1330 lp_parm_string(-1, "torture", "userdomain"),
1334 printf("Failed to join as Workstation\n");
1338 usercreds[3].password = user_password;
1339 usercreds[4].password = user_password;
1340 usercreds[5].password = user_password;
1343 status = dcerpc_parse_binding(mem_ctx, binding, &b);
1344 if (!NT_STATUS_IS_OK(status)) {
1345 printf("Bad binding string %s\n", binding);
1350 /* We have to use schannel, otherwise the SamLogonEx fails
1351 * with INTERNAL_ERROR */
1353 b->flags &= ~DCERPC_AUTH_OPTIONS;
1354 b->flags |= DCERPC_SCHANNEL | DCERPC_SIGN | DCERPC_SCHANNEL_128;
1356 cli_credentials_set_workstation(credentials, TEST_MACHINE_NAME, CRED_SPECIFIED);
1357 cli_credentials_set_domain(credentials, lp_workgroup(), CRED_SPECIFIED);
1358 cli_credentials_set_username(credentials, test_machine_account, CRED_SPECIFIED);
1359 cli_credentials_set_password(credentials, machine_password, CRED_SPECIFIED);
1360 cli_credentials_set_secure_channel_type(credentials,
1363 status = dcerpc_pipe_connect_b(mem_ctx, &p, b,
1364 DCERPC_NETLOGON_UUID,
1365 DCERPC_NETLOGON_VERSION,
1368 if (!NT_STATUS_IS_OK(status)) {
1369 printf("RPC pipe connect as domain member failed: %s\n", nt_errstr(status));
1374 status = dcerpc_schannel_creds(p->conn->security_state.generic_state, mem_ctx, &creds);
1375 if (!NT_STATUS_IS_OK(status)) {
1380 for (ci = 0; ci < ARRAY_SIZE(usercreds); ci++) {
1382 if (!test_InteractiveLogon(p, mem_ctx, creds,
1383 usercreds[ci].domain,
1384 usercreds[ci].username,
1385 usercreds[ci].password)) {
1389 if (usercreds[ci].network_login) {
1390 if (!test_SamLogon(p, mem_ctx, creds,
1391 usercreds[ci].domain,
1392 usercreds[ci].username,
1393 usercreds[ci].password,
1400 for (i=0; i < ARRAY_SIZE(credential_flags); i++) {
1402 for (ci = 0; ci < ARRAY_SIZE(usercreds); ci++) {
1404 if (!test_InteractiveLogon(p, mem_ctx, creds,
1405 usercreds[ci].domain,
1406 usercreds[ci].username,
1407 usercreds[ci].password)) {
1411 if (usercreds[ci].network_login) {
1412 if (!test_SamLogon(p, mem_ctx, creds,
1413 usercreds[ci].domain,
1414 usercreds[ci].username,
1415 usercreds[ci].password,
1424 talloc_free(mem_ctx);
1426 torture_leave_domain(join_ctx);
1428 torture_leave_domain(user_ctx);