Pentesting Tools

Draugr : Advanced Tools For Synthetic Stack Frame Manipulation

The Draugr toolset provides a robust framework for performing synthetic stack frame manipulation, primarily designed to bypass modern Endpoint Detection and Response (EDR) systems.

It includes two key components: Draugr-Template and Draugr-Strike, which enable developers to implement advanced techniques such as return address spoofing and remote process injection.

Draugr-Template

The Draugr-Template is a Cobalt Strike BOF (Beacon Object File) template that facilitates the creation of synthetic stack frames. This technique is essential for evading detection by EDRs that monitor stack frames during sensitive API calls.

By mimicking legitimate thread start conditions, Draugr-Template ensures that the stack frame appears less suspicious.

Key Features:

  1. Return Address Spoofing: Draugr spoofs the return address of API calls to evade detection.
  2. Synthetic Stack Frames: After the gadget execution, it pushes two frames to mimic a legitimate thread start, enhancing stealth.
  3. Execution Speed: Unlike thread pool techniques, which are slower, Draugr allows API calls to execute quickly while retrieving return values.

To use Draugr-Template, dynamically resolve the function address and call it using the SPOOF_CALL macro:

HMODULE pKernel32 = GetModuleHandleA("Kernel32.dll");
void* pVirtualAlloc = (void*)GetProcAddress(pKernel32, "VirtualAlloc");
void* pAllocatedAddr = SPOOF_CALL(&stackFrame, pVirtualAlloc, NULL, 1024 * 1024, MEM_COMMIT, PAGE_EXECUTE_READWRITE);

Here, SYNTHETIC_STACK_FRAME structures manage the spoofed stack frames.

Developers can modify the code in src/core/Spoof.c to customize gadgets or fake stack frames. For example:

  • Change the module used to locate gadgets.
  • Edit the fake frame functions (BaseThreadInitThunk, RtlUserThreadStart).
  • Update gadget conditions in FindGadget for alternate implementations.

Draugr-Strike

The Draugr-Strike demonstrates how to use Draugr-Template for remote process injection. It includes steps like memory allocation, shellcode injection, memory protection changes, and creating a spoofed thread at a specific offset.

This code is a proof of concept (PoC) and may occasionally fail during injection. It is not intended for production use.

Draugr provides a powerful set of tools for synthetic stack frame manipulation and process injection. While its primary use case is educational and experimental, it highlights advanced evasion techniques against EDR systems.

However, users must exercise caution and adhere to ethical guidelines when employing these tools.

Varshini

Varshini is a Cyber Security expert in Threat Analysis, Vulnerability Assessment, and Research. Passionate about staying ahead of emerging Threats and Technologies.

Recent Posts

CVE-2025-21333-POC : An In-Depth Exploration Of Windows Kernel Exploitation Techniques

The CVE-2025-21333 Proof of Concept (PoC) demonstrates an exploit targeting a vulnerability in the vkrnlintvsp.sys…

2 hours ago

Powershell Digital Forensics And Incident Response

PowerShell has emerged as a vital tool in Digital Forensics and Incident Response (DFIR), offering…

2 hours ago

Brainstorm : Revolutionizing Web Fuzzing With Local LLMs

Brainstorm is an innovative web fuzzing tool that integrates traditional fuzzing techniques with AI-powered insights,…

21 hours ago

Vulnerability Research : Harnessing Tools Like Metasploit To Uncover And Mitigate Security Weaknesses

Vulnerability research is a critical aspect of cybersecurity that focuses on identifying, analyzing, and documenting…

21 hours ago

NativeBypassCredGuard : Bypassing Credential Guard With NTAPI Functions

NativeBypassCredGuard is a specialized tool designed to bypass Microsoft's Credential Guard, a security feature that…

22 hours ago

PyClassInformer : An Advanced RTTI Parsing Plugin For IDA Pro

PyClassInformer is an IDAPython-based plugin designed for parsing Run-Time Type Information (RTTI) in C++ binaries.…

22 hours ago