This detection identifies adversary activity by correlating network and host logs against three specific Indicators of Compromise (IOCs) linked to the Loki threat actor within Azure Sentinel. Proactive hunting for these IOCs is critical because Loki’s high-severity indicators often signal early-stage reconnaissance or lateral movement that may evade standard automated alerts, requiring manual investigation to prevent broader compromise.
Malware Family: Loki Total IOCs: 3 IOC Types: sha1_hash, sha256_hash, md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| md5_hash | 3d639a627186e77730ff2d1294df49a3 | payload | 2026-08-25 | 95% |
| sha256_hash | 89f6c08fa045d14eb73a0992145a724bc34d531d7af3dcc4901a1b7c7833aede | payload | 2026-08-25 | 95% |
| sha1_hash | dd971d09f94dbd77735a07fc297dd2836fd94616 | payload | 2026-08-25 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Loki
let malicious_hashes = dynamic(["3d639a627186e77730ff2d1294df49a3", "89f6c08fa045d14eb73a0992145a724bc34d531d7af3dcc4901a1b7c7833aede", "dd971d09f94dbd77735a07fc297dd2836fd94616"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Loki IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates
C:\Program Files\CrowdStrike\csagent.exe or MsMpEng.exe) and restrict the alert to non-business hours (e.g., 02:00–05:00 local time) for these processes.Scenario: Automated Cloud Backup Jobs
Veeam.Backup.Service.exe) and the destination IP falls within the organization’s designated Cloud Storage CIDR range or specific backup vendor domains (e.g., *.rubrik.com, *.vcloud.azurewebsites.net).Scenario: Software Deployment via Configuration Management Tools