This hunt detects Formbook data-stealing malware that exfiltrates sensitive credentials and banking information through covert C2 channels following initial infection via phishing emails. A proactive search in Azure Sentinel is critical to identify early-stage lateral movement and prevent the loss of high-value financial assets before the adversary establishes persistent access.
Malware Family: Formbook Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha1_hash | 729f56d9643c97fa9d9fb4a7696df881cbe0321b | payload | 2026-08-21 | 95% |
| md5_hash | 88602976f7c64499ef40e4972ac17db6 | payload | 2026-08-21 | 95% |
| sha256_hash | e89e2ea4c743c87ef7faff9303b9133c54737dd683536cf5e6518374fb130a4a | payload | 2026-08-21 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Formbook
let malicious_hashes = dynamic(["729f56d9643c97fa9d9fb4a7696df881cbe0321b", "88602976f7c64499ef40e4972ac17db6", "e89e2ea4c743c87ef7faff9303b9133c54737dd683536cf5e6518374fb130a4a"]);
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: Formbook IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Legitimate Phishing Simulation Campaigns
.docx with macros) that mimic the behavior of Formbook by establishing outbound connections to external validation servers, triggering the rule’s C2 communication logic.*.knowbe4.com, *.proofpoint.com) and whitelist the specific file hashes associated with the campaign templates used in the last 30 days.Scheduled Credential Backup Jobs via Microsoft Endpoint Manager
DOMAIN\IntuneBackupSvc) and filter out network destinations matching the organization’s internal backup storage CIDR blocks or Azure Storage endpoints (*.blob.core.windows.net).Third-Party RMM Tool Agent Updates