mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
CVE-2022-37966 s3:libnet: no longer reference des encryption types
We no longer have support for des encryption types in the kerberos libraries anyway. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15237 Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
a683507e56
commit
40b47c194d
@ -2532,9 +2532,8 @@ WERROR libnet_init_JoinCtx(TALLOC_CTX *mem_ctx,
|
||||
|
||||
ctx->in.secure_channel_type = SEC_CHAN_WKSTA;
|
||||
|
||||
ctx->in.desired_encryption_types = ENC_CRC32 |
|
||||
ENC_RSA_MD5 |
|
||||
ENC_RC4_HMAC_MD5;
|
||||
ctx->in.desired_encryption_types = 0;
|
||||
ctx->in.desired_encryption_types |= ENC_RC4_HMAC_MD5;
|
||||
ctx->in.desired_encryption_types |= ENC_HMAC_SHA1_96_AES128;
|
||||
ctx->in.desired_encryption_types |= ENC_HMAC_SHA1_96_AES256;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user