This detection identifies adversary activity linked to the DarkTortilla campaign by monitoring specific indicators of compromise that signal potential reconnaissance or initial access attempts within the Azure Sentinel environment. Proactive hunting for these IOCs is critical because DarkTortilla targets high-value sectors with sophisticated tradecraft, and early identification allows the SOC team to rapidly isolate affected assets before lateral movement occurs.
Malware Family: DarkTortilla Total IOCs: 3 IOC Types: md5_hash, sha256_hash, sha1_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha256_hash | 198906594ae1cb1951d6e75e1921a7dd1188c8356371b847556ff15226dc5e83 | payload | 2026-07-24 | 95% |
| sha1_hash | 21e5f10d7fef1dea915d7a39ce867b2948eee944 | payload | 2026-07-24 | 95% |
| md5_hash | 24711f1cd12f005cdf6353c261f8eaf4 | payload | 2026-07-24 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - DarkTortilla
let malicious_hashes = dynamic(["198906594ae1cb1951d6e75e1921a7dd1188c8356371b847556ff15226dc5e83", "21e5f10d7fef1dea915d7a39ce867b2948eee944", "24711f1cd12f005cdf6353c261f8eaf4"]);
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 4 specific false positive scenarios for the ThreatFox: DarkTortilla IOCs detection rule, including tailored filters and exclusions suitable for an enterprise environment:
Scenario: Automated Threat Intelligence Feed Ingestion
Host_Name contains “Tenable-Feed” or IP range 10.20.50.x) and the process name matches the ingestion service (e.g., feed_sync_service.exe).Scenario: Scheduled Endpoint Security Policy Updates
FalconSensor.exe, S1Agent.exe, or MsMpEng.exe) and the event timestamp aligns with the scheduled update window (e.g., between 02:00–04:00 local time).Scenario: Admin-Driven Forensic Analysis and Hunting