NativeBypassCredGuard is a specialized tool designed to bypass Microsoft’s Credential Guard, a security feature that protects sensitive credentials like NTLM password hashes and Kerberos tickets using virtualization-based security (VBS).
This tool achieves its objective by patching the WDigest.dll file to enable plaintext credential storage in memory, allowing attackers to retrieve cleartext passwords from the LSASS process memory dump.
The tool operates by identifying a specific byte pattern (“39 ?? ?? ?? ?? 00 8b ?? ?? ?? ?? 00”) in the WDigest.dll file on disk. It then calculates memory addresses and modifies two global variables:
1
to enable plaintext credential storage.0
to disable Credential Guard.These changes ensure that credentials are stored in plaintext whenever users log in. The next time the LSASS process is dumped, it may contain these plaintext credentials.
NativeBypassCredGuard exclusively relies on NTAPI functions exported by ntdll.dll
, avoiding user-mode hooks and enhancing stealth. Key NTAPI functions include:
SeDebugPrivilege
for process manipulation.Additionally, the tool can optionally remap a clean version of ntdll.dll
into memory to bypass user-mode hooks, further evading detection.
The tool supports two options:
Optional remapping of ntdll.dll
can be specified with true
or omitted for default behavior.
NativeBypassCredGuard.exe check
NativeBypassCredGuard.exe patch true
NativeBypassCredGuard demonstrates how attackers can exploit WDigest’s legacy behavior and bypass modern security mechanisms like Credential Guard.
Brainstorm is an innovative web fuzzing tool that integrates traditional fuzzing techniques with AI-powered insights,…
Vulnerability research is a critical aspect of cybersecurity that focuses on identifying, analyzing, and documenting…
PyClassInformer is an IDAPython-based plugin designed for parsing Run-Time Type Information (RTTI) in C++ binaries.…
The Non-Sucking Service Manager (NSSM) is a lightweight, open-source utility designed to simplify the management…
The PS5 UMTX Jailbreak is a webkit-based kernel exploit developed by SpecterDev and other contributors,…
Spice86 is an advanced PC emulator designed for reverse engineering and rewriting real-mode DOS programs,…