T1020.001 CrowdStrike LogScale · LogScale

Detect Traffic Duplication in CrowdStrike LogScale

Adversaries may leverage traffic mirroring in order to automate data exfiltration over compromised infrastructure. Traffic mirroring is a native feature for some network devices and cloud environments, often used for legitimate network analysis. Adversaries may abuse this capability to mirror or redirect network traffic through infrastructure they control, enabling passive interception of credentials, session tokens, and sensitive data. Cloud-based environments (AWS Traffic Mirroring, GCP Packet Mirroring, Azure vTAP) provide native APIs for configuring traffic duplication, which adversaries may invoke directly after gaining sufficient privileges.

MITRE ATT&CK

Tactic
Exfiltration
Technique
T1020 Automated Exfiltration
Sub-technique
T1020.001 Traffic Duplication
Canonical reference
https://attack.mitre.org/techniques/T1020/001/

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
// CrowdStrike LogScale — detect cloud traffic mirroring via cloud audit log ingestion
// Target the repository containing AWS CloudTrail, Azure Activity, and GCP Audit events
(
  eventName = /(?i)CreateTrafficMirrorSession|CreateTrafficMirrorTarget|CreateTrafficMirrorFilter|ModifyTrafficMirrorSession|ModifyTrafficMirrorFilterRule|DeleteTrafficMirrorSession/
  OR operationName = /(?i)virtualNetworkTaps\/write|tapConfigurations\/write/
  OR protoPayload.methodName = /(?i)insertPacketMirroring|patchPacketMirroring|deletePacketMirroring/
)
| case {
    eventName = /(?i)Create|Insert/ | mirrorAction := "Creation" ;
    eventName = /(?i)Modify|Patch|Update/ | mirrorAction := "Modification" ;
    eventName = /(?i)Delete/ | mirrorAction := "Deletion" ;
    operationName = /(?i)write/ | mirrorAction := "Creation/Modification" ;
    * | mirrorAction := "Other" ;
  }
| coalesce(userIdentity.arn, caller, protoPayload.authenticationInfo.principalEmail) as ActorIdentity
| coalesce(sourceIPAddress, callerIpAddress, protoPayload.requestMetadata.callerIp) as SourceIP
| coalesce(eventName, operationName, protoPayload.methodName) as ResolvedEventName
| table([_time, ResolvedEventName, mirrorAction, ActorIdentity, SourceIP, awsRegion, resourceGroupName])
high severity medium confidence

CrowdStrike LogScale (Humio) query detecting traffic mirroring and packet duplication events across AWS, Azure, and GCP cloud environments. Uses regex matching on cloud audit log event fields, classifies each event into creation, modification, or deletion lifecycle buckets, and normalises actor identity and source IP across all three cloud providers for unified analyst triage.

Data Sources

CrowdStrike Falcon CSPM (Horizon) cloud audit log ingestion for AWSCrowdStrike Falcon CSPM (Horizon) cloud audit log ingestion for AzureCrowdStrike Falcon CSPM (Horizon) cloud audit log ingestion for GCPLogScale direct cloud audit source integrations (AWS CloudTrail S3, Azure Event Hub, GCP Pub/Sub)

Required Tables

LogScale repository containing cloud audit events from AWS CloudTrail, Azure Activity Logs, and GCP Cloud Audit

False Positives & Tuning

  • Platform or security engineering teams running approved AWS Traffic Mirror deployments to route packets to network inspection appliances (NDR sensors, packet brokers) as part of an established security architecture
  • CrowdStrike Falcon Horizon or other CSPM tools making automated API calls to enumerate or validate traffic mirror configurations during routine cloud posture assessments
  • Load testing or performance engineering teams creating short-lived mirror sessions to capture representative traffic samples for analysis — verify against active load test windows and change management tickets
Download portable Sigma rule (.yml)

Other platforms for T1020.001


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 1AWS Traffic Mirror Session Creation

    Expected signal: AWS CloudTrail will log CreateTrafficMirrorTarget, CreateTrafficMirrorFilter, CreateTrafficMirrorFilterRule (x2), and CreateTrafficMirrorSession events. Each event will contain userIdentity.arn, sourceIPAddress, eventTime, requestParameters (including networkInterfaceId, trafficMirrorTargetId), and responseElements with the created resource IDs.

  2. Test 2Azure Virtual Network TAP Configuration

    Expected signal: Azure Activity Log will record Microsoft.Network/virtualNetworkTaps/write and Microsoft.Network/networkInterfaces/tapConfigurations/write operations with caller identity (UPN or service principal), CallerIpAddress, ResourceGroup, and SubscriptionId. Events appear within 1-5 minutes of execution.

  3. Test 3GCP Packet Mirroring Policy Creation

    Expected signal: GCP Cloud Audit Log (Admin Activity) will record a compute.packetMirrorings.insert method call with principalEmail, callerIp, requestMetadata, and resource name. The event is logged in the cloudaudit.googleapis.com/activity log stream for the project.

  4. Test 4Cisco IOS SPAN Session Configuration Simulation

    Expected signal: Linux syslog will contain CISCO-IOS tagged entries showing ERSPAN configuration commands. These would be ingested via syslog forwarder into SIEM. In a real scenario, TACACS+ accounting would also log the commands with the authenticated username, timestamp, and device IP.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections