
Shellcode injection using the Windows Debugging API
DbgNexum is a Proof-of-Concept for injecting shellcode using the Windows Debugging API and Shared Memory (File Mapping). It avoids writing and reading remote memory directly, instead using context manipulation to force the target process to load and execute the payload itself.
The injector attaches to a target process and creates a suspended thread. Through a debug loop, it sets a Hardware Breakpoint to trap execution at a specific return address. At each trap, the injector modifies the CPU registers to mimic function calls, orchestrating a sequence of Windows API function calls inside of the target process.
At the time of writing this README, I tested the technique against MDE and Elastic, neither of which detected it.
WriteProcessMemory / VirtualAllocEx: The payload is transferred via CreateFileMapping and MapViewOfFile.ReadProcessMemory: The approach gets all the key information from the thread context.The PoC uses an XORed msfvenom shellcode that spawns "calc.exe". But please use your own shellcode!
shellcode.hDbgNexum.exe <PID>
Example Output:
[i] Section 'MZ' created and shellcode copied
[+] Bait thread created. Setting HWBP on FileTimeToSystemTime
[i] Execution Redirected:
|-> [0] Preparation & anchoring stack
|-> [1] Setting HWBP & buffer alloc
|-> [2] Copying File-Mapping name
|-> [3] Zeroing stack slot
|-> [4] Opening handle to named file mapping
|-> [5] Mapping payload into mem. with exec. perm.
|-> [6] Cleanup & shellcode execution
[+] Successfully detached from process 19256
[i] Orchestration complete.
The execution flow is a constant back and forth between the injector's Debug Loop and the target process.
Injection Stages
The DebugLoop function contains the main injection logic and orchestrates the "state machine":
0. Preparation:
ret call.1. Allocation:
LocalAlloc to (obviously) allocate a small buffer.2. Data Setup:
memcpy to copy the string MZ into the previously allocated buffer.3. Stack Prep:
memset to zero out a stack slot. This is in preparation of stage 5, which will call MapViewOfFile. Since the function will use >4 arguments, the 5th arg is passed via the stack (which we set here).4. Open Mapping:
OpenFileMappingA using the MZ name, "created" in stage 2 & 3.5. Map Payload:
MapViewOfFile. This maps the shared memory section (containing the shellcode) into the target's address space with EXECUTE permissions.6. Execution:
RIP to the address returned by MapViewOfFile.