Detect Fallback Channels in Sumo Logic CSE
Adversaries may use fallback or alternate communication channels if the primary channel is compromised or inaccessible in order to maintain reliable command and control and to avoid data transfer thresholds. Malware families such as HOPLIGHT, InvisiMole, TrickBot, and BISCUIT implement hard-coded primary and secondary C2 addresses, while others like OilRig's ISMAgent dynamically fall back from HTTP to DNS tunneling. Detection focuses on processes establishing connections to multiple distinct external destinations in sequence — particularly where port diversity (80→443→8080) or protocol switching (HTTP→DNS) is observed — which is anomalous for non-browser processes.
MITRE ATT&CK
- Tactic
- Command and Control
- Technique
- T1008 Fallback Channels
- Canonical reference
- https://attack.mitre.org/techniques/T1008/
Sumo Detection Query
_sourceCategory=windows/sysmon OR _sourceCategory=endpoint/sysmon
| where EventID = 3
| where !isPrivateIP(DestinationIp)
| where DestinationPort in (53, 80, 443, 4443, 8080, 8443, 8888, 1194, 4444, 9443, 2222, 3128)
| where !(Image matches "*\\chrome.exe" or Image matches "*\\firefox.exe"
or Image matches "*\\msedge.exe" or Image matches "*\\iexplore.exe"
or Image matches "*\\Teams.exe" or Image matches "*\\Slack.exe"
or Image matches "*\\Zoom.exe" or Image matches "*\\outlook.exe"
or Image matches "*\\MsMpEng.exe" or Image matches "*\\OneDrive.exe"
or Image matches "*\\brave.exe" or Image matches "*\\SearchApp.exe")
| timeslice 1h
| parse field=Image "*\\*" as _dir, ProcessName
| stats
dcount(DestinationIp) as UniqueDestIPs,
dcount(DestinationPort) as UniqueDestPorts,
count as TotalConnections,
values(DestinationIp) as DestinationIPs,
values(DestinationPort) as DestinationPorts,
min(_messageTime) as FirstSeen,
max(_messageTime) as LastSeen
by _timeslice, Computer, Image, ProcessName, ProcessId, ParentImage
| where UniqueDestIPs >= 3 or (UniqueDestPorts >= 3 and TotalConnections >= 5)
| if (UniqueDestIPs >= 5 and UniqueDestPorts >= 3, "Critical",
if (UniqueDestIPs >= 4 or (UniqueDestPorts >= 3 and TotalConnections >= 8), "High",
if (UniqueDestIPs >= 3, "Medium", "Low"))) as RiskScore
| fields FirstSeen, LastSeen, Computer, ProcessName, Image, ProcessId, ParentImage,
UniqueDestIPs, UniqueDestPorts, TotalConnections, DestinationIPs, DestinationPorts, RiskScore
| sort by UniqueDestIPs desc Sumo Logic CSE query using Sysmon Event ID 3 (network connection) to detect fallback C2 behavior. Aggregates connections per process per 1-hour timeslice, filtering private IPs and known-benign browsers. Identifies processes connecting to 3+ distinct external IPs or 3+ distinct ports on C2-relevant ports, with risk scoring matching the reference KQL/SPL logic.
Data Sources
Required Tables
False Positives & Tuning
- Enterprise asset management or inventory tools polling multiple endpoints for hardware/software inventory
- CI/CD pipeline agents (Jenkins, GitLab Runner) connecting to multiple artifact repositories and build servers
- Network scanning or vulnerability assessment tools legitimately deployed by IT security teams
Other platforms for T1008
Testing Methodology
Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.
- Test 1Sequential HTTP Fallback Simulation (Windows)
Expected signal: Sysmon Event ID 3: Three sequential network connection events from powershell.exe to 192.0.2.10:80, 192.0.2.11:443, and 192.0.2.12:8080 within seconds of each other. Sysmon Event ID 1: Process creation for powershell.exe with Net.WebClient in the command line. All three connections will fail (no listener), but Sysmon logs all outbound connection attempts.
- Test 2DNS Fallback Simulation After HTTP Failure (Linux/macOS)
Expected signal: Syslog/auditd: curl process creation with failed connections to 192.0.2.50 and 192.0.2.51. dig process creation events for 20 sequential DNS queries to 8.8.8.8 (external resolver). If Sysmon for Linux is deployed: Event ID 3 for curl network connections and dig DNS queries. Network capture shows failed TCP SYN to RFC 5737 IPs followed by UDP/53 query burst to 8.8.8.8.
- Test 3Multi-Port C2 Fallback via Netcat (Windows)
Expected signal: Sysmon Event ID 3: Three network connection events from powershell.exe to 192.0.2.100 on ports 80, 443, and 8080. Connections will time out (no listener). Sysmon Event ID 1: Process creation with TcpClient and multiple ports visible in command line.
- Test 4Proxy-Aware Fallback (JHUHUGIT Pattern, Windows)
Expected signal: Sysmon Event ID 1: powershell.exe with registry access command in arguments. Sysmon Event ID 3: Two outbound network connections — first to 192.0.2.200:443, then to 192.0.2.201:8080. Sysmon Event ID 12/13: Registry read from HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings (proxy settings access). Security Event ID 4663 if object access auditing is enabled.
References (10)
- https://attack.mitre.org/techniques/T1008/
- https://www.mandiant.com/resources/apt1-exposing-one-of-chinas-cyber-espionage-units
- https://www.welivesecurity.com/2017/05/09/sednit-adds-two-zero-day-exploits-using-trump-decoy/
- https://us-cert.cisa.gov/ncas/analysis-reports/AR19-100A
- https://researchcenter.paloaltonetworks.com/2017/07/unit42-oilrig-uses-ismdoor-variant-possibly-linked-greenbug-threat-group/
- https://www.welivesecurity.com/wp-content/uploads/2018/06/ESET_InvisiMole.pdf
- https://www.welivesecurity.com/2017/10/30/ebury-is-alive-but-unseen/
- https://learn.microsoft.com/en-us/defender-endpoint/advanced-hunting-devicenetworkevents-table
- https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchReference/CommonStatsFunctions
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1008/T1008.md
Unlock Pro Content
Get the full detection package for T1008 including response playbook, investigation guide, and atomic red team tests.