I am working on some KB articles about upcoming Kerberos changes.
KB5020805: How to manage Kerberos protocol changes related to CVE-2022-37967 - Microsoft Support
https://support.microsoft.com/en-us/topic/kb5020805-how-to-manage-kerberos-protocol-changes-related-to-cve-2022-37967-997e9acc-67c5-48e1-8d0d-190269bf4efb
KB5021130: How to manage the Netlogon protocol changes related to CVE-2022-38023 - Microsoft Support
https://support.microsoft.com/en-us/topic/kb5021130-how-to-manage-the-netlogon-protocol-changes-related-to-cve-2022-38023-46ea3067-3989-4d40-963c-680fd9e8ee25
KB5021131: How to manage the Kerberos protocol changes related to CVE-2022-37966 - Microsoft Support
https://support.microsoft.com/en-us/topic/kb5021131-how-to-manage-the-kerberos-protocol-changes-related-to-cve-2022-37966-fd837ac3-cdec-4e76-a6ec-86e67501407d
The article mentions issues with Windows 2003 systems.
In lab I have setup a domain and have 2003 systems added.
I have applied all the registry changes that are to be the new "Default"
KB5020805
#enforce
New-ItemProperty -Path "HKLM:\System\CurrentControlSet\Services\KDC" -Name KrbtgtFullPacSignature -Value 0X3 -PropertyType DWORD –Force
KB5021130
#Enforced
New-ItemProperty -Path "HKLM:\System\CurrentControlSet\Services\Netlogon\Parameters" -Name RequireSeal -Value 0X2 -PropertyType DWORD –Force
KB5021131
#Default
New-ItemProperty -Path "HKLM:\System\CurrentControlSet\Services\KDC" -Name DefaultDomainSupportedEncTypes -Value 0X27 -PropertyType DWORD –Force
My 2003 boxes can still login.
Am I missing something or will 2003 Servers continue to work?