CVE-2026-62752: Windows Kerberos Security Authority Elevation of Privilege
HERMES THREAT SCORE & LOCAL SECURITY AUTHORITY HIJACKING
Target:Windows Kerberos Security Support Provider (kerberos.dll / lsass.exe) CVSS v3.1 rates CVE-2026-62752 at 7.8 (HIGH, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H). The Hermes Threat Score elevates operational severity to 89 (HIGH) due to universal presence on every Windows workstation, server, and domain controller, providing attackers with a reliable local elevation primitive to SYSTEM.
CVE-2026-62752: Windows Kerberos Security Authority Elevation of PrivilegeVULNERABILITY
Software platform affected by security vulnerabilities and agentic attack patterns.
🔍 Why is this related? (Evidence & Provenance)
“Confirmed security vulnerability in Microsoft Windows & Windows Server documented in Hermes dossier.”
- [vulnerability_report]
- [government_confirmation]CISA verified active exploitation in the wild and mandated federal remediation deadline in KEV entry. — Source: Cybersecurity & Infrastructure Security Agency (CISA): CISA Adds CVE-2026-59822 to Known Exploited Vulnerabilities Catalog (Reliability: VERY_HIGH)
1. Technical Context & Affected Software Matrix
Section titled “1. Technical Context & Affected Software Matrix”The Windows Kerberos Security Support Provider (kerberos.dll) is the primary authentication provider for Windows domain members and domain controllers.
| Parameter | Technical Specification | Threat Intelligence Context |
|---|---|---|
| CVE Identifier | CVE-2026-62752 | MSRC Bulletin August 2026 |
| Vulnerable Component | Windows Kerberos SSP (kerberos.dll / lsass.exe) | Core Local Security Authority (LSA) subsystem |
| CWE Weakness | CWE-122: Heap-based Buffer Overflow | Unbounded memory copy during ticket cache enumeration |
| CVSS v3.1 Score | 7.8 (HIGH / Hermes Operational Severity 89) | CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H |
| Attack Vector | Local authenticated user / service account | Local elevation of privilege (LPE) |
| Affected Platforms | Windows 10, Windows 11 (22H2-24H2), Windows Server 2019, 2022, 2025 | Universal deployment across all Windows hosts |
| Microsoft Patches | Cumulative Updates August 2026 (KB5041580, KB5041585, KB5041592) | Standard high-priority deployment |
2. In-Depth Technical Decomposition & Root Cause
Section titled “2. In-Depth Technical Decomposition & Root Cause”When user applications interact with Kerberos tickets (such as querying cached tickets via KerbQueryTicketCacheExMessage or purging tickets via KerbPurgeTicketCacheMessage), the requests are handled by LsaCallAuthenticationPackage.
In kerberos.dll, the routine unpacking the caller’s target service name fails to enforce boundary checks when calculating the allocated buffer length for wide-character realm strings:
// Conceptual vulnerable logic in kerberos.dll ticket cache handlerNTSTATUS KerbExtractRealmName( PKERB_QUERY_TKT_CACHE_REQUEST pRequest, ULONG cbRequestLength, PUNICODE_STRING pDestinationRealm) { // Integer truncation when calculating allocation size USHORT cbAllocSize = (USHORT)(pRequest->RealmNameLength * sizeof(WCHAR));
// If RealmNameLength is crafted such that cbAllocSize wraps or misallocates: PWSTR pwszBuffer = (PWSTR)LsaFunctions->AllocateLsaHeap(cbAllocSize); if (!pwszBuffer) return STATUS_INSUFFICIENT_RESOURCES;
// VULNERABILITY: Raw copy exceeds allocated heap chunk size! RtlCopyMemory(pwszBuffer, pRequest->RealmNameBuffer, pRequest->RealmNameLength * sizeof(WCHAR));
pDestinationRealm->Buffer = pwszBuffer; pDestinationRealm->Length = cbAllocSize; return STATUS_SUCCESS;}Because lsass.exe runs with process protection and highest system privileges, corrupting adjacent heap chunks allows arbitrary function pointer overwrites, resulting in arbitrary shellcode execution as NT AUTHORITY\SYSTEM.
3. Attack Vectors & Enterprise Threat Scenarios
Section titled “3. Attack Vectors & Enterprise Threat Scenarios”[ Low-Privilege Local Compromise (Phishing / Web Shell) ] │ ▼ (LsaCallAuthenticationPackage / kerberos.dll)[ Trigger CVE-2026-62752 Heap Buffer Overflow in lsass.exe ] │ ▼ (Code Execution under NT AUTHORITY\SYSTEM)[ Extract Kerberos TGTs & NTLM Hashes from Memory ] │ ▼ (Pass-the-Hash / Overpass-the-Hash)[ Lateral Movement across Domain / Forest ]Forensic Correlation with Active Directory Corpus
Section titled “Forensic Correlation with Active Directory Corpus”- NTLM vs Kerberos Investigation: Understanding how Kerberos tickets are requested, stored in LSA memory, and abused. See AD-21: NTLM vs Kerberos investigation fundamentals.
- PAC Structure & Validation: Privilege validation within the Kerberos ticket structure and how LSA validates PAC signatures. See AD-22: Kerberos PAC structure, validation and forgery.
- Golden and Silver Tickets: Elevating to SYSTEM on a DC or service machine allows extracting Kerberos keys (
krbtgtor service SPNs). See AD-27: Golden Ticket vs Silver Ticket.
4. Forensic Detection, Artefacts & Event IDs
Section titled “4. Forensic Detection, Artefacts & Event IDs”Detecting CVE-2026-62752 exploitation requires monitoring LSA heap integrity and anomalous process injection:
Key Event IDs & Artefacts
Section titled “Key Event IDs & Artefacts”- Security Event ID 4672 (“Special privileges assigned to new logon”): Unexpected privilege assignment (
SeDebugPrivilege,SeTcbPrivilege) right after a low-privilege user session. - System Event ID 1000 / Error Reporting: Crash logs of
lsass.exewith exception code0xc0000374(STATUS_HEAP_CORRUPTION) indicating exploitation attempts. - Sysmon Event ID 10 (ProcessAccess): Abnormal open handles to
lsass.exewithPROCESS_VM_WRITEorPROCESS_VM_OPERATIONaccess masks.
Detection Rule (Splunk / Elastic / Sigma)
Section titled “Detection Rule (Splunk / Elastic / Sigma)”title: Potential LSA Heap Overflow via Kerberos Packagestatus: experimentaldescription: Detects LSASS heap corruption or abnormal thread creation originating from kerberos.dlllogsource: product: windows service: systemdetection: selection: EventID: 1000 Source: 'Application Error' FaultingApplication: 'lsass.exe' FaultingModule: 'kerberos.dll' ExceptionCode: '0xc0000374' condition: selectionlevel: critical5. Remediation, Hardening & Defensive Engineering
Section titled “5. Remediation, Hardening & Defensive Engineering”- Apply Security Updates: Deploy August 2026 cumulative updates across all endpoints.
- Enable LSA Protection (RunAsPPL): Configure
RunAsPPL=1andRunAsPPLBoot=1inHKLM\SYSTEM\CurrentControlSet\Control\Lsato prevent unauthorized code injection intolsass.exe. - Enable Credential Guard: Use Virtualization-Based Security (VBS) to isolate Kerberos keys in an isolated microkernel environment.