This is a Dropper/PostExploitation Tool (or can be used in both situations) targeting Windows.
Capabilities:
- Indirect Dynamic Syscall
- SSN + Syscall address sorting via Modified TartarusGate approach
- Remote Process Injection via APC Early Bird
- Spawns a sacrificial Process as the target process
- ACG(Arbitrary Code Guard)/BlockDll mitigation policy on spawned process
- PPID spoofing (MITRE ATT&CK TTP: T1134.004)
- Api resolving from TIB (Directly via offset (from TIB) -> TEB -> PEB -> resolve Nt Api)
- Cursed Nt API hashing
Bonus: If blessed with Admin privilege =>
- Disables Event Log via killing EventLog Service Threads (MITRE ATT&CK TTP: T1562.002)
Disadv: If threads are resumed, all events that occurred during the suspension of Event Logger, get logged Again!
So, thought of killing them instead!
"It's more Invasive than suspension, but the decision is always up to the operator. Besides, killing threads get logged on the kernel level" - @SEKTOR7net
While Killing only those threads in the indirect syscall implant, was facing an error. I was unable to get the "eventlog" SubProcessTag Value. So thought of killing all threads, i.e. killing the whole process (responsible svchost.exe). Yeah creating an IOC!.
= EDR/Ring-3/UserLand hook Bypass Probably! -> Don't have EDR to check it though ;(
Compile:
Directly via VS compiler:
- Also via compile.bat (prefer option 1.)
Usage:
PS C:> .\x64\Release\indirect.exe
[!] Wrong!
[->] Syntax: .\x64\Release\indirect.exe <PPID to spoof>
In Action:
DarkWidow.mp4
Further Improvements:
- PPID spoofing (Emotet method)
- Much Stealthier Use Case of EventLog Disabling!
Portions of the Code and links those helped:
-
TIB:
-
GS and FS register:
-
PEB LDR structure:
-
TIB -> TEB -> PEB -> Resolve Nt API and API hashing
- https://stackoverflow.com/questions/41277888/iterating-over-peb-dllname-shows-only-exe-name
- https://doxygen.reactos.org/d7/d55/ldrapi_8c_source.html#l01124
- labs.cognisys.group, a blog by @D1rkMtr
- A pic of the snippet from the above link, which I used here to resolve API dynamically without HardCoding Offsets:
-
ACG(Arbitrary Code Guard)/BlockDll mitigation policy:
- links:
- Protecting Your Malware by @xpn
- Wraith by @winterknife
- spawn and HOLLOW by @0xBoku
-
PPID Spoofing Detection:
- PPID Spoofing Detect by @spotheplanet
- If got time, I will be adding a detection Portion to this portion! -> [Remaining..............................................!]
-
Moneta Detection and PESieve Detection:\
-
How Thread Stack Looks of the Implant Process:
Implant Process | Legit Cmd process |
---|---|
It follows that by executing the return instruction in the memory of the ntdll.dll in the indirect syscall POC, the return address can be successfully spoofed, the ntdll.dll can be placed at the top of the call stack and the EDR will interpret a higher legitimacy. - @VirtualAllocEx from DirectSyscall Vs Indirect Syscall
Also thanks to, @peterwintrsmith!
-
Killing Event Log Threads:
Major Thanks for helping me out (Directly/indirectly (pun NOT intended :))):
- @SEKTOR7net
- @peterwintrsmith
- @Jean_Maes_1994
- @D1rkMtr
- @spotheplanet
- @0xBoku
- @winterknife
- @monnappa22
- @xpn
- @hlldz
I hope I didn't miss someone!