T1011 Sumo Logic CSE · Sumo

Detect Exfiltration Over Other Network Medium in Sumo Logic CSE

Adversaries may attempt to exfiltrate data over a different network medium than the command and control channel. If the command and control network is a wired Internet connection, the exfiltration may occur over a WiFi connection, modem, cellular data connection, Bluetooth, or another radio frequency (RF) channel. Adversaries may choose to do this if they have sufficient access or proximity, and the connection might not be secured or defended as well as the primary Internet-connected channel because it is not routed through the same enterprise network monitoring infrastructure. This technique is commonly associated with insider threat scenarios and advanced adversaries who have achieved a foothold and seek to bypass perimeter DLP controls that monitor only the primary wired egress channel.

MITRE ATT&CK

Tactic
Exfiltration
Technique
T1011 Exfiltration Over Other Network Medium
Canonical reference
https://attack.mitre.org/techniques/T1011/

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
(_sourceCategory=*Windows* OR _sourceCategory=*sysmon* OR _sourceCategory=*winlogbeat*)
| where EventID = 1 OR EventID = 4688
| eval image_lc = toLowerCase(Image)
| eval cmdline_lc = toLowerCase(CommandLine)
| where (
    image_lc matches /netsh\.exe/ AND (
      cmdline_lc contains "wlan" OR
      cmdline_lc contains "hostednetwork" OR
      cmdline_lc contains "mode=allow" OR
      cmdline_lc contains "mode=disallow" OR
      cmdline_lc contains "mobile hotspot"
    )
  )
  OR image_lc matches /fsquirt\.exe|bttray\.exe/
  OR (
    image_lc matches /powershell\.exe|pwsh\.exe/ AND (
      cmdline_lc contains "bluetooth" OR
      cmdline_lc contains "wlan" OR
      cmdline_lc contains "wifi" OR
      cmdline_lc contains "hostednetwork" OR
      cmdline_lc contains "softap" OR
      cmdline_lc contains "netadapter" OR
      cmdline_lc contains "mobilebroadband" OR
      cmdline_lc contains "new-wifiprofile" OR
      cmdline_lc contains "get-netadapter" OR
      cmdline_lc contains "set-netconnectionprofile"
    )
  )
| eval DetectionBranch = if(image_lc matches /netsh\.exe/, "NetshWlanConfig",
    if(image_lc matches /fsquirt\.exe|bttray\.exe/, "BluetoothFileTransfer",
       "PSWirelessManipulation"))
| eval IsHotspotCreation = if(
    cmdline_lc contains "hostednetwork" OR
    cmdline_lc contains "mode=allow" OR
    cmdline_lc contains "softap",
    "true", "false")
| eval IsWirelessDiscovery = if(
    cmdline_lc contains "show interface" OR
    cmdline_lc contains "show networks" OR
    cmdline_lc contains "show profiles" OR
    cmdline_lc contains "show hostednetwork" OR
    cmdline_lc contains "get-netadapter",
    "true", "false")
| fields _messageTime, Computer, User, Image, CommandLine, ParentImage, DetectionBranch, IsHotspotCreation, IsWirelessDiscovery
| sort by _messageTime desc
high severity medium confidence

Sumo Logic query detecting T1011 exfiltration over alternate network mediums from Windows Security (EventID 4688) and Sysmon (EventID 1) process creation events. Uses eval-based branch classification with toLowerCase normalization and contains/matches operators across three detection branches: netsh wlan hotspot configuration, Bluetooth transfer utility execution, and PowerShell wireless adapter manipulation. Includes IsHotspotCreation and IsWirelessDiscovery signals for triage prioritization.

Data Sources

Sumo Logic Windows Event Log Source (Sysmon EventID 1)Sumo Logic Windows Event Log Source (Security EventID 4688)Winlogbeat Universal Forwarder

Required Tables

Windows Security Logs (_sourceCategory=*Windows*)Sysmon Operational Logs (_sourceCategory=*sysmon*)

False Positives & Tuning

  • Sysadmins running netsh wlan set hostednetwork or netsh wlan show drivers for legitimate wireless diagnostics, AP provisioning, or infrastructure audits
  • End users or support staff invoking fsquirt.exe or bttray.exe during Bluetooth pairing for authorized peripheral setup workflows such as headset or keyboard onboarding
  • Enterprise software distribution tools or remote monitoring agents using PowerShell to run Get-NetAdapter or Set-NetConnectionProfile during patch-window compliance or hardware enumeration jobs
Download portable Sigma rule (.yml)

Other platforms for T1011


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 1Create and Start WiFi Hosted Network via netsh

    Expected signal: Sysmon Event ID 1: Two Process Create events — first with CommandLine containing 'wlan set hostednetwork mode=allow ssid=df00tech-test-exfil', second containing 'wlan start hostednetwork'. Security Event ID 4688 if command-line auditing is enabled. Windows WLAN-AutoConfig Operational Event ID 11000 (Microsoft-Windows-WLAN-AutoConfig: The wireless Hosted Network started successfully). Registry change under HKLM\SYSTEM\CurrentControlSet\Services\WlanSvc\Parameters\HostedNetworkSettings.

  2. Test 2Launch Bluetooth File Transfer Wizard (fsquirt.exe)

    Expected signal: Sysmon Event ID 1: Process Create with Image=C:\Windows\System32\fsquirt.exe, ParentImage=powershell.exe, User=current user. Security Event ID 4688 if command-line auditing is enabled. Bluetooth-Driver Operational log may record adapter activation. No file creation or network connection events since no transfer is completed.

  3. Test 3Wireless Adapter Reconnaissance via PowerShell and netsh

    Expected signal: Sysmon Event ID 1: Process Create for powershell.exe with CommandLine containing 'Get-NetAdapter' and 'PhysicalMediaType'. Child Sysmon Event ID 1 processes for netsh.exe with CommandLine 'wlan show interfaces' and 'wlan show profiles'. PowerShell ScriptBlock Log Event ID 4104 with the full script content.

  4. Test 4Linux Bluetooth Device Discovery and OBEX Transfer Preparation

    Expected signal: Linux auditd (if configured with execve rules): SYSCALL records type=EXECVE for hciconfig, hcitool, bluetoothctl, and rfkill with their arguments and auid/uid/pid context. Syslog/journal entries from the Bluetooth daemon (bluetoothd) showing adapter state transitions. If Microsoft Defender for Linux is deployed, DeviceProcessEvents will record these process creation events.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections