1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +03:00

CVE-2022-37966 selftest: Run S4U tests against FL2003 DC

This shows that changes around RC4 encryption types do not break older
functional levels where only RC4 keys are available.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=15237

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton
2022-11-23 16:05:04 +13:00
committed by Stefan Metzmacher
parent 371d7e63fc
commit 44802c46b1
3 changed files with 71 additions and 6 deletions

View File

@ -1040,8 +1040,13 @@ krb5_environ = {
planoldpythontestsuite("none", "samba.tests.krb5.kcrypto")
planoldpythontestsuite("ad_dc_default", "samba.tests.krb5.simple_tests",
environ=krb5_environ)
planoldpythontestsuite("ad_dc_default:local", "samba.tests.krb5.s4u_tests",
environ=krb5_environ)
for env, fast_support in [("ad_dc_default:local", True),
("fl2003dc:local", False)]:
planoldpythontestsuite(env, "samba.tests.krb5.s4u_tests",
environ={
**krb5_environ,
'FAST_SUPPORT': int(fast_support),
})
planoldpythontestsuite("rodc:local", "samba.tests.krb5.rodc_tests",
environ=krb5_environ)