The Samba-Bugzilla – Attachment 8096 Details for
Bug 9272
net ads join does not provide AES keys in host keytab
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Additional patch for master
tmp.diff (text/plain), 1.34 KB, created by
Stefan Metzmacher
on 2012-10-22 11:53:35 UTC
(
hide
)
Description:
Additional patch for master
Filename:
MIME Type:
Creator:
Stefan Metzmacher
Created:
2012-10-22 11:53:35 UTC
Size:
1.34 KB
patch
obsolete
>From 25e75a86cc5fd87f1a5eae50a0592ed78d7556bf Mon Sep 17 00:00:00 2001 >From: Stefan Metzmacher <metze@samba.org> >Date: Mon, 22 Oct 2012 13:47:48 +0200 >Subject: [PATCH] lib/krb5_wrap: request enc_types in the correct order (bug > #9272) > >aes256-cts-hmac-sha1-96 and aes128-cts-hmac-sha1-96 >should have a higher priority than arcfour-hmac-md5, >otherwise the KDC still gives us arcfour-hmac-md5 session keys. > >Signed-off-by: Stefan Metzmacher <metze@samba.org> >--- > lib/krb5_wrap/krb5_samba.c | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > >diff --git a/lib/krb5_wrap/krb5_samba.c b/lib/krb5_wrap/krb5_samba.c >index 8037337..f04f6e1 100644 >--- a/lib/krb5_wrap/krb5_samba.c >+++ b/lib/krb5_wrap/krb5_samba.c >@@ -685,15 +685,15 @@ int cli_krb5_get_ticket(TALLOC_CTX *mem_ctx, > krb5_ccache ccdef = NULL; > krb5_auth_context auth_context = NULL; > krb5_enctype enc_types[] = { >- ENCTYPE_ARCFOUR_HMAC, >- ENCTYPE_DES_CBC_MD5, >- ENCTYPE_DES_CBC_CRC, >-#ifdef HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96 >- ENCTYPE_AES128_CTS_HMAC_SHA1_96, >-#endif > #ifdef HAVE_ENCTYPE_AES256_CTS_HMAC_SHA1_96 > ENCTYPE_AES256_CTS_HMAC_SHA1_96, > #endif >+#ifdef HAVE_ENCTYPE_AES128_CTS_HMAC_SHA1_96 >+ ENCTYPE_AES128_CTS_HMAC_SHA1_96, >+#endif >+ ENCTYPE_ARCFOUR_HMAC, >+ ENCTYPE_DES_CBC_MD5, >+ ENCTYPE_DES_CBC_CRC, > ENCTYPE_NULL}; > > initialize_krb5_error_table(); >-- >1.7.9.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 9272
:
8019
|
8020
|
8093
|
8094
|
8095
|
8096
|
8136
|
8137
|
8188
|
8189