원클릭으로
driver-analysis
Windows kernel driver analysis — DriverEntry, dispatch table, IOCTL handlers, vulnerability audit
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Windows kernel driver analysis — DriverEntry, dispatch table, IOCTL handlers, vulnerability audit
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Patch binary code in Binary Ninja using natural language — read, assemble, write, verify
Patch binary code in IDA Pro using natural language — read, assemble, write, verify
Systematic binary deobfuscation — string decryption, control flow flattening (CFF) removal, opaque predicate elimination, mixed boolean-arithmetic (MBA) simplification, bogus control flow, instruction substitution reversal, dead code removal, and anti-disassembly fixes. Trigger: deobfuscate, unobfuscate, deobfuscation, CFF, flatten, opaque predicate, MBA, obfuscated, OLLVM, Tigress, VMProtect, string decryption, junk code, bogus control flow, instruction substitution, anti-disassembly
Write and execute Binary Ninja Python scripts — full API reference included
Write and execute IDAPython scripts — full API reference included
Expert ELF malware analysis — packing, toolchain ID, kill chain, persistence, C2, rootkits, cryptominers, Go/Rust/Mirai patterns, MITRE ATT&CK mapping
| name | Driver Analysis |
| description | Windows kernel driver analysis — DriverEntry, dispatch table, IOCTL handlers, vulnerability audit |
| tags | ["driver","kernel","windows","ioctl","vulnerability"] |
Task: Windows Kernel Driver Analysis. You are analyzing a kernel-mode driver binary.
NTSTATUS DriverEntry(DRIVER_OBJECT*, UNICODE_STRING*)decompile_function on the entry pointUse create_struct and set_type early — these appear in virtually every driver:
Apply types with set_function_prototype and apply_type_to_variable to make decompiled code readable immediately.
For each IRP_MJ_DEVICE_CONTROL handler:
decompile_function on the dispatch functionDispatchDeviceControl, HandleIoctlReadPhysMem, etc.