T1102.003 Splunk · SPL

Detect One-Way Communication in Splunk

Adversaries may use an existing, legitimate external Web service as a means for sending commands to a compromised system without receiving return output over the Web service channel. Compromised systems may leverage popular websites and social media (GitHub, Twitter/X, Telegram, GitLab, TechNet) to host command and control (C2) instructions. Those infected systems may send output back over a different C2 channel or return no output at all. Using common services makes it easier for adversaries to hide in expected noise, and SSL/TLS encryption from Web service providers adds an additional layer of protection.

MITRE ATT&CK

Tactic
Command and Control
Technique
T1102 Web Service
Sub-technique
T1102.003 One-Way Communication
Canonical reference
https://attack.mitre.org/techniques/T1102/003/

SPL Detection Query

Splunk (SPL)
spl
index=sysmon sourcetype="XmlWinEventLog:Microsoft-Windows-Sysmon/Operational" EventCode=3
| eval dest_host=lower(DestinationHostname)
| eval initiating_image=lower(Image)
| eval is_legit_webservice=case(
    match(dest_host, "(twitter\.com|x\.com|api\.twitter\.com|api\.x\.com)"), "twitter",
    match(dest_host, "(github\.com|raw\.githubusercontent\.com|gist\.github\.com)"), "github",
    match(dest_host, "(gitlab\.com)"), "gitlab",
    match(dest_host, "(api\.telegram\.org|t\.me)"), "telegram",
    match(dest_host, "(pastebin\.com|paste\.ee|hastebin\.com|pastecode\.io)"), "pastebin",
    match(dest_host, "(discord\.com|discordapp\.com)"), "discord",
    match(dest_host, "(docs\.google\.com|drive\.google\.com|googleapis\.com)"), "google_services",
    match(dest_host, "(reddit\.com|redd\.it)"), "reddit",
    match(dest_host, "(notion\.so|trello\.com|digitalpoint\.com)"), "other_webservice",
    match(dest_host, "(onedrive\.live\.com|sharepoint\.com)"), "microsoft_personal",
    true(), "")
| where is_legit_webservice != ""
| eval is_suspicious_process=if(match(initiating_image, "(powershell\.exe|pwsh\.exe|cmd\.exe|wscript\.exe|cscript\.exe|mshta\.exe|rundll32\.exe|regsvr32\.exe|certutil\.exe|curl\.exe|wget\.exe|bitsadmin\.exe|python\.exe|python3\.exe|ruby\.exe|node\.exe|wmic\.exe|msbuild\.exe)"), 1, 0)
| eval is_encoded=if(match(lower(CommandLine), "(-encodedcommand|-enc\s|frombase64string|base64)"), 1, 0)
| eval is_office_parent=if(match(lower(ParentImage), "(winword\.exe|excel\.exe|powerpnt\.exe|outlook\.exe|onenote\.exe|msaccess\.exe|acrord32\.exe|acrobat\.exe)"), 1, 0)
| eval is_service_spawn=if(match(lower(ParentImage), "(svchost\.exe|taskeng\.exe|taskhostw\.exe|services\.exe|wmiprvse\.exe)"), 1, 0)
| eval suspicion_score=is_suspicious_process + is_encoded + is_office_parent + is_service_spawn
| where is_suspicious_process=1
| table _time, host, User, Image, CommandLine, ParentImage, ParentCommandLine,
         DestinationHostname, DestinationIp, DestinationPort,
         is_legit_webservice, is_encoded, is_office_parent, is_service_spawn, suspicion_score
| sort - _time
medium severity medium confidence

Detects network connections from suspicious processes (scripting engines, LOLBins, scripting languages) to known legitimate web services that could host C2 instructions (one-way communication). Uses Sysmon Event ID 3 (Network Connection) to correlate the initiating process with the destination hostname. Assigns a suspicion score based on encoded commands, office parent processes, and service-spawned execution. Higher scores indicate higher likelihood of malicious activity.

Data Sources

Network Traffic: Network Connection CreationProcess: Process CreationSysmon Event ID 3

Required Sourcetypes

XmlWinEventLog:Microsoft-Windows-Sysmon/Operational

False Positives & Tuning

  • Developers and DevOps engineers using git clients, GitHub CLI, or GitLab runners on workstations that legitimately connect to GitHub or GitLab
  • IT automation tools (Ansible, Puppet, Chef) polling GitHub for configuration or playbook updates
  • Software update mechanisms that fetch release notes, changelogs, or update manifests from GitHub or Google APIs
  • Security tools and EDR agents that check reputation feeds or pull threat intel from public repositories
  • Collaboration tools installed as services that connect to Discord, Telegram, or Slack APIs for notifications
Download portable Sigma rule (.yml)

Other platforms for T1102.003


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.

  1. Test 1PowerShell C2 Polling via Pastebin Raw URL

    Expected signal: Sysmon Event ID 1: Process Create with Image=powershell.exe, CommandLine containing 'Invoke-WebRequest', 'pastebin.com/raw', 'Invoke-Expression', '-WindowStyle Hidden'. Sysmon Event ID 3: Network Connection to pastebin.com on port 443. Sysmon Event ID 22: DNS query for pastebin.com. PowerShell ScriptBlock Log Event ID 4104 with the full script content.

  2. Test 2Python Script Polling GitHub Raw Content for Commands

    Expected signal: Sysmon Event ID 1: Process Create with Image=python.exe, CommandLine containing 'raw.githubusercontent.com' and urllib. Sysmon Event ID 3: Three successive network connections to raw.githubusercontent.com on port 443, approximately 30 seconds apart. Sysmon Event ID 22: DNS queries for raw.githubusercontent.com.

  3. Test 3Curl Silent Polling of Telegram Bot API

    Expected signal: Sysmon Event ID 1: Process Create with Image=curl.exe, CommandLine containing '-s', '-o', 'api.telegram.org', 'getUpdates'. Sysmon Event ID 3: Network Connection to api.telegram.org on port 443. Sysmon Event ID 11: File creation at %TEMP%\tg_response.txt. Sysmon Event ID 22: DNS query for api.telegram.org.

  4. Test 4Scheduled Task Simulating Periodic Web Service C2 Poll

    Expected signal: Security Event ID 4698 (Scheduled Task Created) with task name 'MicrosoftEdgeUpdateTaskMachineUA_ARGUSTEST' and command containing 'raw.githubusercontent.com'. Sysmon Event ID 1: schtasks.exe process creation. Registry event for new task in HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Schedule\TaskCache. On execution: Sysmon Event ID 1 for powershell.exe spawned by taskeng.exe/taskhostw.exe, Sysmon Event ID 3 for network connection to raw.githubusercontent.com.

Unlock Pro Content

Get the full detection package for T1102.003 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections