sec@research:~$ blog

📰 Research Articles (1)

🛠️ Tools & Utilities (1)

In Development Debugging, Automation, WinDbg

WinDbgX MCP

Static code analysis and decompilation snippets have transformed vulnerability research and malware analysis, but they share a fundamental flaw: they lack dynamic execution context. Static analysis cannot observe live heap allocations, inspect unbacked thread return addresses in real time, or verify how registers evolve across loop iterations. To bridge this gap, we built WinDbgX-MCP — an open-source Model Context Protocol (MCP) server that connects AI assistants (Google Antigravity, VS Code Cline, Claude Desktop, Cursor, Codex, and local LLMs) directly into live WinDbg and WinDbgX (DbgX.Shell.exe) debugging sessions across user-mode binaries, kernel drivers, remote debug servers, and crash dumps.

📝 Debugger & Research Notes (1)

WinDbg 2026-08-20

WinDbg KDNET Kernel Connection Quick Ref

Useful commands when starting a dual-VM kernel debugging session: ```cmd bcdedit /debug on bcdedit /dbgsettings net hostip:192.168.1.100 po...