
Claude Code Agent Team을 이용한 CVE-2025-62215 익스플로잇 개발
Windows 커널 경쟁 상태(Race Condition) / 이중 해제(Double-Free) 권한 상승 취약점 조사 프로젝트입니다.
| 항목 | 세부 정보 |
|---|---|
| CVE | CVE-2025-62215 |
| 구성 요소 | Windows 커널 (ntoskrnl.exe) |
| 유형 | 경쟁 상태 (CWE-362) / 이중 해제 (CWE-415) |
| 영향 | 로컬 권한 상승 → SYSTEM |
| CVSS 3.1 | 7.0 (HIGH) — AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H |
| 패치 | 2025년 11월 패치 화요일 |
| 상태 | CISA KEV 등록, 실제 환경에서 활발히 악용됨 |
.
├── README.md # This file
├── CLAUDE.md # Project context for Claude Code
├── report.md # Comprehensive vulnerability report
├── analysis.md # Static analysis of public (fake) PoC
├── TODO.md # Next steps and research plan
├── poc/
│ ├── exploit.h # Common definitions & undocumented types
│ ├── exploit.cpp # PoC skeleton (correct APIs)
│ └── Makefile # MSVC (nmake) build config
└── docs/
├── binary-acquisition.md # How to obtain ntoskrnl.exe binaries
├── patch-analysis-guide.md # IDA Pro + BinDiff analysis guide
├── detection-rules.md # Sigma / Sysmon / ETW detection rules
└── test-environment.md # VM + WinDbg setup guide
abrewer251/CVE-2025-62215_Windows_Kernel_PE) — 가짜/작동 불가
NtCreateKernelObject) 사용VirtualAlloc은 커널 풀을 스프레이할 수 없음docs/binary-acquisition.md 참조)poc/exploit.cpp에서 3단계(취약점 트리거) 완료docs/test-environment.md 참조)# From VS Developer Command Prompt
cd poc
nmake
exploit.exe --check # System check only
이 프로젝트는 교육 및 승인된 보안 연구 목적으로만 제공됩니다.