How Windows 11 Credential Guard Prevents Theft

Windows 11 protects system secrets by using Credential Guard, a security feature that isolates sensitive authentication data using hardware virtualization. By separating credentials such as NTLM hashes, Kerberos tickets, and domain credentials from the standard operating system environment, Windows 11 prevents attackers and malware from extracting secrets from system memory, effectively neutralizing attacks like Pass-the-Hash and Pass-the-Ticket.

Virtualization-Based Security (VBS)

Credential Guard relies on Virtualization-Based Security (VBS) to create a secure, isolated partition of memory. Using the CPU’s hardware virtualization extensions, Windows 11 runs a hypervisor that divides the operating system into two distinct virtual environments:

Isolation of the Local Security Authority (LSA)

In standard Windows architectures, the Local Security Authority Subsystem Service (lsass.exe) stores authentication credentials in the standard operating system memory. If an attacker gains administrative privileges or kernel-level access, they can use tools like Mimikatz to dump the memory of lsass.exe and steal credentials.

Credential Guard solves this vulnerability by splitting the LSA process:

  1. A standard lsass.exe process continues to handle non-sensitive requests within the normal OS.
  2. A secure, isolated counterpart called LSAIso (LSA Isolated) runs exclusively inside the Virtual Secure Mode.
  3. Sensitive operations, such as signing authentication requests and handling master keys, are delegated to LSAIso via Remote Procedure Calls (RPC).

Because LSAIso resides in a cryptographically isolated memory space, even malware running with kernel-level (Ring 0) privileges in the normal OS cannot read or modify the credentials stored within the secure container.

Attacks Neutralized by Credential Guard

Credential Guard specifically mitigates common credential-theft vectors:

Hardware Anchoring

To ensure integrity from boot to runtime, Credential Guard binds its security to physical hardware components:

By combining hypervisor isolation, process separation, and hardware-backed integrity, Windows 11 ensures that critical authentication assets remain protected even when the host operating system is fully compromised.