I ended up writing this as the primary MCP library from https://modelcontextprotocol.io/ tends to require ASP.net core hosting. Because of this requirement you are unable to embed that functionality very easily into a DLL that is used for a plugin. I build this POC server that supports .NET framework (not core) so AI can be …
Category Archives: Uncategorized
Updates MCP client to support Dynamic server command responses
Testing MCP connectivity over SSE without an LLM in the middle (Raw JSON request)
Creating an MCP (Memory Control & Patch) Service with x64dbg and C#
In reverse engineering and dynamic analysis, tools like x64dbg provide an excellent foundation for inspecting, modifying, and understanding binary behavior at runtime. But what if you want automated control over memory patching, module inspection, or call stack introspection — all in a structured, programmable service? That’s exactly what I’m building: an MCP (Memory Control & …
Continue reading “Creating an MCP (Memory Control & Patch) Service with x64dbg and C#”
DLL injection in MASM64
One of my favorited things about MASM is that it has the ability to inject raw functions in its own static code into another process without the need for a DLL. This code is the first step to injecting code into a process but I plan to build on top of this so that the …