← Back to SOC feed Coverage →

Judgement Panda exfil activity

kql MEDIUM Azure-Sentinel
DeviceProcessEvents
apthuntingmicrosoftofficial
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-05-05T03:15:55Z · Confidence: medium

Hunt Hypothesis

Adversaries may exfiltrate data using custom PowerShell scripts to establish covert communication channels, leveraging Azure Blob Storage for data exfiltration. SOC teams should proactively hunt for this behavior to identify and mitigate potential data loss from advanced persistent threats in their Azure Sentinel environment.

KQL Query

DeviceProcessEvents
| where Timestamp > ago(7d)
| where ProcessCommandLine has @"\ldifde.exe -f -n "
     or ProcessCommandLine has @"\7za.exe a 1.7z " 
     or ProcessCommandLine endswith @" eprod.ldf" 
     or ProcessCommandLine has @"\aaaa\procdump64.exe" 
     or ProcessCommandLine has @"\aaaa\netsess.exe" 
     or ProcessCommandLine has @"\aaaa\7za.exe" 
     or ProcessCommandLine has @"copy .\1.7z \" 
     or ProcessCommandLine has @"copy \client\c$\aaaa\" 
     or FolderPath == @"C:\Users\Public\7za.exe"
| top 100 by Timestamp desc

Analytic Rule Definition

id: ae8a5c5d-4cfb-4a59-9adb-eb6c6c219620
name: Judgement Panda exfil activity
description: |
  Original Sigma Rule: https://github.com/Neo23x0/sigma/blob/master/rules/apt/apt_judgement_panda_gtr19.yml.
  Questions via Twitter: @janvonkirchheim.
requiredDataConnectors:
- connectorId: MicrosoftThreatProtection
  dataTypes:
  - DeviceProcessEvents
query: |
  DeviceProcessEvents
  | where Timestamp > ago(7d)
  | where ProcessCommandLine has @"\ldifde.exe -f -n "
       or ProcessCommandLine has @"\7za.exe a 1.7z " 
       or ProcessCommandLine endswith @" eprod.ldf" 
       or ProcessCommandLine has @"\aaaa\procdump64.exe" 
       or ProcessCommandLine has @"\aaaa\netsess.exe" 
       or ProcessCommandLine has @"\aaaa\7za.exe" 
       or ProcessCommandLine has @"copy .\1.7z \" 
       or ProcessCommandLine has @"copy \client\c$\aaaa\" 
       or FolderPath == @"C:\Users\Public\7za.exe"
  | top 100 by Timestamp desc

Required Data Sources

Sentinel TableNotes
DeviceProcessEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://github.com/Azure/Azure-Sentinel/blob/main/Hunting Queries/Microsoft 365 Defender/Campaigns/Judgement Panda exfil activity.yaml