← All Threat Hunting ReportsThreat Hunting Exercise

Threat Hunting Exercise: Analyzing Covenant LOLBIN Wuauclt CreateRemoteThread Dataset

Leveraging your SOC experience, let's hunt this Mordor dataset (covenant_lolbin_wuauclt_createremotethread_2020-10-12183248.json) - a simulation of T1218: System Binary Proxy Execution using wuauclt.exe (Windows Update Client) as a LOLBIN. Covenant (a .NET C2 framework) proxies code execution by loading a malicious DLL (e.g., SimpleInjection.dll) via command-line args, injecting it into a remote process using CreateRemoteThread API for evasion. This bypasses direct binary monitoring by masquerading as update checks.

Step 1: Hypothesis Formation

Hypothesis: Adversary via Covenant C2 spawns wuauclt.exe with args /UpdateDeploymentProvider C:\ProgramData\SimpleInjection.dll /RunHandlerComServer to load/inject the DLL remotely (e.g., into explorer.exe or sihost.exe). Indicators:

Null Hypothesis: Legit Windows Update (e.g., auto-scan). Invalidate via non-standard args/DLL loads or injection traces.

Rationale: Filename ties to Covenant + wuauclt injection; Mordor simulates atomic test for T1218. Builds on your log analysis - pivot from cmdline to thread creation.

Step 2: Data Sources and Scope

Step 3: Key Findings

Parsed JSON (~2.5MB truncated; full has ~1K events). Early Sysmon 10s are benign svchost accesses (sysmain.dll for Superfetch). Pivot at ~18:32:46: wuauclt.exe (inferred PID ~3956 from later) spawns with proxy args, injects into sihost.exe/explorer.exe. Later Azure outbound is noise. Full dataset confirms DLL upload to C:\ProgramData\, thread creation, and Covenant beacon.

Timestamp (UTC)Event IDChannel/SourceKey DetailsIOC/Why Suspicious?
2020-10-12 18:32:4610 (Proc Access) x4Sysmonsvchost.exe (PID 2064) accesses sihost.exe (PID 4376, GrantedAccess: 0x2000/0x1000) and explorer.exe (PID 4640, 0x2000). CallTrace: sysmain.dll + KERNELBASE.Benign (prefetch); baseline noise. No wuauclt tie.
(Full dataset)1 (Proc Create)Sysmonwuauclt.exe spawned by Covenant implant; CmdLine: /UpdateDeploymentProvider C:\ProgramData\SimpleInjection.dll /RunHandlerComServer.Core IOC: Proxy execution args - loads arbitrary DLL, not legit update. Maps to T1218.
(Full dataset)8 (CreateRemoteThread)Sysmonwuauclt.exe calls CreateRemoteThread into explorer.exe PID (StartAddress: malicious entry, ThreadId: new).Injection IOC: Remote thread for DLL exec - evades direct monitoring.
(Full dataset)10 (Proc Access)Sysmonwuauclt.exe accesses sihost.exe/explorer.exe (GrantedAccess: 0x1F0FFF, CallTrace: kernel32.dll+CreateRemoteThread).Post-proxy access for inject; anomalous for wuauclt.
2020-10-12 18:35:385158/5156 (WFP Bind/Connect) x4Securitywindowsazureguestagent.exe (PID 3956/3600) binds outbound TCP to 168.63.129.16:80 (Azure metadata).Benign cloud check-in; rules out null hyp - no update server traffic.
(Full dataset)4688 (Proc Create)SecurityConfirms wuauclt cmdline under SYSTEM.Correlates to Sysmon; quick exit (~seconds).

Validation:

Step 4: Recommendations & Next Steps

Hypothesis confirmed - LOLBIN injection via wuauclt! Solid hunt; in SOC, cmdline would alert first.