← Back to SOC feed Coverage →

Cobalt Strike Lateral Movement

kql MEDIUM Azure-Sentinel
AlertEvidence
cobalt-strikehuntinglateral-movementmicrosoftofficial
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at Azure-Sentinel →
Retrieved: 2026-04-25T09:00:00Z · Confidence: medium

Hunt Hypothesis

Cobalt Strike is being used to move laterally across the network, indicating potential adversary persistence and expansion. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and contain compromise early.

KQL Query

AlertInfo
| where Title in("File dropped and launched from remote location", "Suspicious transfer of an executable file")
// Joining in instances where Cobalt Strike's built-in PsExec is used for lateral movement
| join AlertEvidence on $left.AlertId == $right.AlertId
| where FileName matches regex @"^([a-z0-9]){7}\.exe$" and FileName matches regex "[0-9]{1,5}"

Analytic Rule Definition

id: 1212ae5c-43cc-4c17-bcbb-d23cf9ad3483
name: Cobalt Strike Lateral Movement
description: |
  Microsoft has observed Bazacall using Cobalt Strike in order to move laterally to other machines on the network.
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - AlertInfo
  - AlertEvidence
tactics:
- Lateral movement
query: |
  AlertInfo
  | where Title in("File dropped and launched from remote location", "Suspicious transfer of an executable file")
  // Joining in instances where Cobalt Strike's built-in PsExec is used for lateral movement
  | join AlertEvidence on $left.AlertId == $right.AlertId
  | where FileName matches regex @"^([a-z0-9]){7}\.exe$" and FileName matches regex "[0-9]{1,5}"

Required Data Sources

Sentinel TableNotes
AlertEvidenceEnsure this data connector is enabled

MITRE ATT&CK Context

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Campaigns/Bazacall/Cobalt Strike Lateral Movement.yaml