This hunt detects adversary activity involving three specific Indicators of Compromise (IOCs) linked to the Prometei threat actor, which may signal early-stage reconnaissance or lateral movement within the environment. The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify and contain potential Prometei-related intrusions before they escalate into broader incidents.
Malware Family: Prometei Total IOCs: 3 IOC Types: md5_hash, sha1_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | cd1378bb22fa98439afecc6cf3e657b3633ed37b | payload | 2026-08-08 | 95% |
| md5_hash | fde4bb9242202ad2ec42ab19a0fdd453 | payload | 2026-08-08 | 95% |
| sha256_hash | 10505f035b1e6569cb22d42614829e85fd432e014418f457e2e1dfc31dcd505c | payload | 2026-08-08 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Prometei
let malicious_hashes = dynamic(["cd1378bb22fa98439afecc6cf3e657b3633ed37b", "fde4bb9242202ad2ec42ab19a0fdd453", "10505f035b1e6569cb22d42614829e85fd432e014418f457e2e1dfc31dcd505c"]);
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: Prometei IOCs rule, including tailored filters and exclusions suitable for an enterprise environment:
Scenario: Scheduled Endpoint Protection Updates
FalconSensor.exe (or MsMpEng.exe) occurring between 02:00 and 04:00 local time.Scenario: Automated Software Deployment via SCCM/Intune
ccmsetup.exe or WindowsUpdateAgent) establishes outbound connections to Prometei’s update servers to validate license keys and fetch configuration manifests.NT SERVICE\CCMEXEC or SYSTEM) where the destination port is restricted to standard HTTPS (443) and the source IP belongs to the internal management subnet.Scenario: Third-Party SIEM Enrichment Job