Author Archives: ControllingNet
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 …
Install Axoltol on Ubuntu 24 with Nvidia Cuda 12.
Warning: Turing cards are not supported on Ubuntu 24 due to compatibility with flash-attn 1.x. flash-attn 2.x plans to support Turing cards in the future but for now are Ampere and up. pip3 install flash-attn==1.0.9 <– Latest 1.x release Install for Turing cards on Ubuntu 22 Configuration documentation for .yaml files: https://axolotl-ai-cloud.github.io/axolotl/docs/config.html – https://modal.com/docs/examples/llm-finetuning HTTP …
Continue reading “Install Axoltol on Ubuntu 24 with Nvidia Cuda 12.”