Microsoft has published two Remote Code Execution (RCE) advisories affecting the Kerberos Proxy service:
- CVE-2024-43639 Windows KDC Proxy Remote Code Execution Vulnerability, published 2024.11.12
- CVE-2025-33071 Use after free in Windows KDC Proxy Service (KPSSVC) allows an unauthorized attacker to execute code over a network, published 2025.06.10
The enumeration of affected products (from Windows Server 2012 to 2025) was updated on 2026.06.17.
These RCE are exploitable directly from the Internet and do not require authentication to gain access to the hosting server.
The following will display the exact build of a server :
$os = Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion"
Write-Host "$($os.ProductName) $($os.DisplayVersion) (Build $($os.CurrentBuildNumber).$($os.UBR))"
Also, as pointed out in the comments, the Kerberos Proxy service has undocumented side effects.