# Developing Windows Kernel Exploits

> <!-- Copyright (c) 2026 defconxt. All rights reserved. -->

- Skill: `majiayu000/developing-windows-kernel-exploits` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds add majiayu000/developing-windows-kernel-exploits`
- Raw SKILL.md: https://api.skillmd.com/api/skills/majiayu000/developing-windows-kernel-exploits/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Security
- Author: majiayu000 (https://skillmd.com/u/majiayu000)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/majiayu000/developing-windows-kernel-exploits

---


<!-- Copyright (c) 2026 defconxt. All rights reserved. -->
<!-- Licensed under AGPL-3.0 — see LICENSE file for details. -->
<!-- CIPHER is a trademark of defconxt. -->
---
name: developing-windows-kernel-exploits
description: >-
  Develop exploits targeting Windows kernel vulnerabilities including driver bugs and privilege escalation.
domain: cybersecurity
subdomain: exploit-development
tags:
  - windows
  - kernel-exploitation
  - privilege-escalation
  - exploit-dev
version: "1.0"
author: defconxt
license: AGPL-3.0
metadata:
  mitre-attack: ["T1068"]
---

# Developing Windows Kernel Exploits

## Overview

Develop exploits targeting Windows kernel vulnerabilities including driver bugs and privilege escalation.

## Prerequisites

| Requirement | Install |
|---|---|
| Python 3.10+ | For agent tooling |
| Cloud CLI tools | Provider-specific CLIs |

## Key Concepts

Developing Windows Kernel Exploits involves systematic analysis and investigation
of security events in the target environment.

## Quick Reference

```bash
node scripts/agent.js discover --target <TARGET>
node scripts/agent.js analyze --target <TARGET> --depth full
node scripts/agent.js collect --target <TARGET> --output evidence.json
node scripts/agent.js report --investigation INV-001
```

## Workflow

1. Define investigation scope
2. Collect relevant artifacts
3. Analyze evidence
4. Correlate findings
5. Identify indicators
6. Document chain of custody
7. Generate report

## Detection

```yaml
title: Windows Kernel Exploits Detection
id: 0443a763-979c-42c2-b29c-36510d93204b
status: experimental
description: Detects suspicious activity related to developing windows kernel exploits techniques in exploit development context
logsource:
  category: process_creation
  product: windows
detection:
  selection:
    CommandLine: "*developing*windows*"
  condition: selection
level: critical
tags:
  - attack.t1068
  - attack.execution
falsepositives:
  - Vulnerability scanner testing known exploit signatures
```

## Verification

- Verify evidence integrity
- Confirm analysis results
- Validate indicator extraction
- Check correlation accuracy
- Verify report completeness

## References

- OWASP Testing Guide — https://owasp.org/www-project-web-security-testing-guide/
- MITRE ATT&CK — https://attack.mitre.org/
- NIST SP 800-53 — https://csf.tools/reference/nist-sp-800-53/

