WI

windows-boundaries

Specialized skill for Windows security research, including sandbox escape, PPL bypass, and privilege escalation techniques.

Install

mkdir -p .claude/skills/windows-boundaries && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/11670" && unzip -o skill.zip -d .claude/skills/windows-boundaries && rm skill.zip

Installs to .claude/skills/windows-boundaries

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

- Planning privilege escalation paths through security boundaries - Sandbox escape research (browser, Office, AppContainer) - Understanding Windows security architecture for exploitation - Kernel/user boundary crossing
218 chars · catalog descriptionno explicit “when” trigger
Advanced

Key capabilities

  • Plan privilege escalation paths across Windows security boundaries
  • Research sandbox escape techniques for browsers and applications
  • Reach Ring 0 via kernel vulnerabilities or BYOVD
  • Defeat PPL to dump LSASS or tamper with EDR self-defense
  • Bypass UAC via auto-elevating COM or registry hijack

How it works

This skill outlines techniques and scripts for exploiting Windows security boundaries, including kernel/user crossings, UAC bypasses, and sandbox escapes. It provides a technique map with ATT&CK and CWE references.

Inputs & outputs

You give it
Sandbox configuration, kernel information, or foothold token
You get back
Boundary escape, elevated access, kernel R/W primitive, or system token

When to use windows-boundaries

  • Research sandbox escape paths
  • Analyze kernel-user boundary vulnerabilities
  • Develop privilege escalation Proofs of Concept
  • Audit PPL/COM security boundaries

About this skill

Windows Security Boundaries

When to Activate

  • Planning a privilege-escalation path that crosses a Windows security boundary (integrity level, AppContainer/LPAC, PPL, or the kernel/user line)
  • Sandbox-escape research: browser renderer (Chromium/Edge Mojo), Office WebView, packaged apps, AppContainer/LPAC brokers
  • Reaching Ring 0 via win32k/dxgkrnl bugs or BYOVD for a kernel read/write primitive
  • Defeating PPL to dump LSASS or tamper with EDR self-defense
  • Going from a SeImpersonate service account to SYSTEM via RPC/ALPC/named-pipe abuse
  • UAC bypass (Medium → High) via auto-elevating COM or registry hijack

Boundary stack (high → low): VTL1 (Secure Kernel/Cred Guard) > Ring 0 (ntoskrnl/win32k/drivers) > Ring 3: System > High > Medium > Low > AppContainer/LPAC. PPL is an orthogonal wall guarding LSASS/EDR even from SYSTEM.

Technique Map

TechniqueATT&CKCWEReferenceScript
win32k / dxgkrnl UAF → kernel R/W → token stealT1068CWE-416references/kernel-user-boundary.mdscripts/ioctl_fuzzer.py
Driver IOCTL abuse (METHOD_NEITHER arb-R/W)T1068CWE-781references/kernel-user-boundary.mdscripts/ioctl_fuzzer.py
BYOVD load + MSR/LSTAR or phys R/W → SYSTEMT1068, T1543.003CWE-1188references/byovd-kernel-rw.mdscripts/byovd_kernel_rw.c
BYOVD EDR-kill (callback nulling)T1562.001, T1014CWE-1188references/byovd-kernel-rw.mdscripts/byovd_kernel_rw.c
UAC bypass — ICMLuaUtil elevated COM monikerT1548.002CWE-269references/integrity-uac-com.mdscripts/uac_com_elevate.cpp
UAC bypass — fodhelper HKCU registry hijackT1548.002, T1112CWE-269references/integrity-uac-com.mdscripts/uac_com_elevate.cpp
AppContainer/LPAC broker abuse / cap over-grantT1211CWE-668references/sandbox-appcontainer-escape.mdscripts/sandbox_escape_probe.py
Chromium/Edge Mojo IPC sandbox escapeT1211CWE-501references/sandbox-appcontainer-escape.mdscripts/sandbox_escape_probe.py
Named-object / symbolic-link squattingT1211CWE-59references/sandbox-appcontainer-escape.mdscripts/sandbox_escape_probe.py
PPL bypass — BYOVDLL (old signed DLL into PPL)T1003.001, T1211CWE-426references/ppl-protected-process.mdscripts/ppl_byovdll.c
PPL bypass — live-dump / WER / Protection-clearT1003.001, T1562.001CWE-269references/ppl-protected-process.mdscripts/byovd_kernel_rw.c
RPC server spoof / endpoint squat (PhantomRPC)T1559, T1134.001CWE-287references/rpc-alpc-boundary.mdscripts/named_pipe_impersonate.c
Named-pipe client impersonation (Potato family)T1134.002, T1134.001CWE-294references/rpc-alpc-boundary.mdscripts/named_pipe_impersonate.c
Host boundary posture enumerationT1082CWE-693(all)scripts/enum_boundaries.ps1

Quick Start

:: 0. Map the host's boundary posture -> pick the right primitive
powershell -ep bypass -File scripts/enum_boundaries.ps1
::    reports: integrity, AppContainer, SeImpersonate/SeDebug, HVCI, driver blocklist,
::    LSASS RunAsPPL, drivers loaded from user-writable paths, named-pipe count.

:: 1. From a sandbox (renderer/packaged app): rank escape vectors
python scripts/sandbox_escape_probe.py

:: 2. Medium -> High: UAC bypass (no file dropped via COM moniker)
uac_com_elevate.exe com "C:\Windows\System32\cmd.exe /c whoami /groups > C:\poc.txt"

:: 3. SeImpersonate present -> SYSTEM via PhantomRPC endpoint squat
whoami /priv | findstr SeImpersonate
named_pipe_impersonate.exe \\.\pipe\W32TIME "C:\Windows\System32\cmd.exe"
w32tm /resync                          :: triggers the SYSTEM client to connect

:: 4. Need Ring 0: map a driver's IOCTLs, then BYOVD kernel R/W -> token steal
python scripts/ioctl_fuzzer.py --device RTCore64 --map
byovd_kernel_rw.exe C:\test\driver.sys token

:: 5. Dump LSASS under PPL without a driver (BYOVDLL / CNG KSP)
ppl_byovdll.exe register C:\stage\vuln_ncryptprov.dll GhostKsp
ppl_byovdll.exe trigger  GhostKsp

OPSEC & Detection (summary)

TechniqueTelemetry / IOCDetection (Sigma / EDR)OPSEC note
win32k/dxgkrnl exploitBugcheck EID 1001 ref win32k/dxgkrnl; process token flips to S-1-5-18 with no service genealogySigma on bugchecks + token anomaly; ETW Microsoft-Windows-Win32kPrefer data-only token copy over CFG/CET-fighting control-flow hijack; missed race = loud bugcheck
BYOVDSysmon EID 6 driver load from user-writable path; 7045/4697 kernel service; EDR telemetry goes silentSigma on unusual driver path + known-bad hashes (loldrivers.io); driver-load-time windowUse un-blocklisted/HVCI-compatible driver; restore LSTAR/callbacks; DeleteService + del .sys
UAC bypass (COM/fodhelper)Sysmon EID 13 write to HKCU ms-settings\Shell\Open\command; dllhost /Processid:{3E5FC7F9..} spawning shellElastic/ManageEngine ICMLuaUtil + fodhelper rulesRotate to a less-known AutoElevate CLSID; don't spawn cmd from dllhost; clean HKCU tree
Sandbox escapeRenderer/GPU process spawning cmd/powershell/rundll32; Mojo handle-transfer anomaliesSigma on browser child-process; patch-posture alert (Edge<134.0.3124.93)Stay in-process post-escape (IPC layer is an EDR blind spot); symlink squat is mostly dead post-2017
PPL bypassOld keyiso/ncryptprov version loaded in lsass (EID 7); EID 10 lsass read; Cryptography\Providers write; live-dumpSigma on DLL version-mismatch + GrantedAccess to lsassDriverless (BYOVDLL/WER/live-dump) avoids BYOVD noise; restore Protection byte; obfuscate dumps
RPC/ALPC impersonation4624 logon type 9 (Advapi); SYSTEM child of service-acct parent; RPC_S_SERVER_UNAVAILABLE (EID 1)Elastic named-pipe impersonation rule; ETW RPC + high impersonation levelPhantomRPC endpoint squat blends w/ admin triggers (w32tm/gpupdate); RevertToSelf + close pipe

Deep Dives

  • references/kernel-user-boundary.md — Ring 3→Ring 0 via win32k/dxgkrnl UAF (CVE-2025-24983, CVE-2025-62573, CVE-2025-55224, CVE-2025-62221, CVE-2026-26132), driver IOCTL surface, kernel R/W → EPROCESS token steal / Protection clear / PreviousMode, modern no-PTE-self-map constraint, KDP/HVCI considerations.
  • references/byovd-kernel-rw.md — Bring-Your-Own-Vulnerable-Driver: load signed driver, MSR-LSTAR vs physical-memory primitives (CVE-2025-8061), EDRKillShifter / Qilin driver rotation, 2025-2026 driver+CVE catalog, blocklist/HVCI bypass, driver-load detection.
  • references/integrity-uac-com.md — integrity model, appinfo/autoElevate internals, fodhelper (UACME 33) + ICMLuaUtil/CMSTPLUA (UACME 41), 2025 IEditionUpgradeManager bypass, finding new AutoElevate COM classes, T1548.002 ITW campaigns.
  • references/sandbox-appcontainer-escape.md — AppContainer/LPAC model + capabilities, broker abuse (WinRT XmlDocument), Chromium/Edge Mojo escapes (CVE-2025-2783 ForumTroll, CVE-2025-4609 ipcz), symbolic-link/RtlIsSandboxToken mitigation, 3-bug renderer chain.
  • references/ppl-protected-process.md — PS_PROTECTION/signer levels, BYOVDLL "Ghost in the PPL" (CVE-2023-28229/36906, BCryptRegisterProvider), NtSystemDebugControl live-dump (Win11 23H2), WER dump, kernel Protection-clear, PPLBlade, Credential Guard hard stop.
  • references/rpc-alpc-boundary.md — named-pipe client impersonation primitive, ALPC SQoS/RequiredServerSid, PhantomRPC server-spoof/endpoint-squat (2026, unpatched), Potato family (PrintSpoofer/GodPotato/SigmaPotato), WER ALPC LPE, NtObjectManager enumeration.

When not to use it

  • When the task does not involve crossing a Windows security boundary
  • When the task does not involve sandbox escape research

Limitations

  • The skill focuses on Windows security boundaries
  • The skill is for offensive security operations

How it compares

This skill provides specific scripts and detailed references for exploiting Windows security boundaries, offering a structured approach compared to general vulnerability research.

Compared to similar skills

windows-boundaries side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
windows-boundaries (this skill)02moReviewAdvanced
skills028dReviewIntermediate
reverse-engineering-tools734moNo flagsAdvanced
game-hacking-techniques422moNo flagsAdvanced

Try saying

Example prompts that trigger this skill in your AI assistant.

You might also like

skills

zhaoxuya520

本目录收录了一系列逆向工程相关的技能模块,每个子目录是一个独立模块,内含 `SKILL.md` 描述其适用场景、工具链和工作流程。

00

reverse-engineering-tools

gmh5225

Guide for reverse engineering tools and techniques used in game security research. Use this skill when working with debuggers, disassemblers, memory analysis tools, binary analysis, or decompilers for game security research.

73204

game-hacking-techniques

gmh5225

Guide for game hacking techniques and cheat development. Use this skill when researching memory manipulation, code injection, ESP/aimbot development, overlay rendering, or game exploitation methodologies.

42128

solidity-security

wshobson

Master smart contract security best practices to prevent common vulnerabilities and implement secure Solidity patterns. Use when writing smart contracts, auditing existing contracts, or implementing security measures for blockchain applications.

15115

ghidra

mitsuhiko

Reverse engineer binaries using Ghidra's headless analyzer. Decompile executables, extract functions, strings, symbols, and analyze call graphs without GUI.

16105

supabase-rls-policy-generator

hopeoverture

This skill should be used when the user requests to generate, create, or add Row-Level Security (RLS) policies for Supabase databases in multi-tenant or role-based applications. It generates comprehensive RLS policies using auth.uid(), auth.jwt() claims, and role-based access patterns. Trigger terms include RLS, row level security, supabase security, generate policies, auth policies, multi-tenant security, role-based access, database security policies, supabase permissions, tenant isolation.

11109

Search skills

Search the agent skills registry