T1011 Elastic Security · Elastic

Detect Exfiltration Over Other Network Medium in Elastic Security

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/

Elastic Detection Query

Elastic Security (Elastic)
eql
process where event.type == "start" and
(
  (
    process.name : "netsh.exe" and
    process.command_line : ("*wlan*", "*hostednetwork*", "*mode=allow*", "*mode=disallow*", "*mobile hotspot*", "*set hostednetwork*", "*start hostednetwork*")
  ) or
  process.name : ("fsquirt.exe", "bttray.exe") or
  (
    process.name : ("powershell.exe", "pwsh.exe") and
    process.command_line : ("*Bluetooth*", "*WiFi*", "*WLAN*", "*HostedNetwork*", "*SoftAP*", "*NetAdapter*", "*MobileBroadband*", "*New-WiFiProfile*", "*Get-NetAdapter*", "*Set-NetConnectionProfile*") and
    (
      process.parent.name : ("cmd.exe", "powershell.exe", "wscript.exe", "cscript.exe", "mshta.exe", "rundll32.exe", "regsvr32.exe", "schtasks.exe") or
      process.command_line : ("*-enc*", "*-EncodedCommand*", "*Compress-Archive*", "*DownloadFile*", "*exfil*")
    )
  )
)
high severity medium confidence

Detects T1011 exfiltration over alternate network mediums using Elastic ECS process event fields. Covers three branches: netsh wlan hotspot and adapter manipulation, Bluetooth file transfer utility execution (fsquirt.exe, bttray.exe), and PowerShell-based wireless adapter commands launched from suspicious parent processes or with obfuscation/exfil markers. Uses wildcard matching on process.command_line with the EQL : operator for case-insensitive matching.

Data Sources

Elastic Endpoint Security agentWinlogbeat with Windows moduleFilebeat with Sysmon module

Required Tables

logs-endpoint.events.process-*winlogbeat-*.ds-logs-system.security-*

False Positives & Tuning

  • IT administrators running 'netsh wlan show' diagnostics or configuring hosted networks for conference rooms or training environments as part of documented change-management procedures
  • IT support staff using fsquirt.exe or bttray.exe to transfer drivers, firmware, or small utilities to user workstations via Bluetooth pairing as an alternative to network shares
  • Vendor-supplied MDM agents, SCCM deployment scripts, or endpoint compliance tools executing PowerShell cmdlets such as Get-NetAdapter or Set-NetConnectionProfile for scheduled hardware inventory and posture reporting
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