This hunt hypothesis targets adversaries deploying Formbook malware to exfiltrate credentials and cryptocurrency wallet data through phishing vectors that compromise endpoint security. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly identify and contain data theft incidents before sensitive information reaches command-and-control servers.
Malware Family: Formbook Total IOCs: 3 IOC Types: sha1_hash, md5_hash, sha256_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| sha256_hash | 74eb42416b47c082fc867764b577ceac6f1bd68e192695d79a9e48a7bd3fdd69 | payload | 2026-07-31 | 95% |
| sha1_hash | aa68f095eebfae5a1122dd82c9c4e9373af1b0ec | payload | 2026-07-31 | 95% |
| md5_hash | 2d5137f186bd8f99e610367e7bab3631 | payload | 2026-07-31 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Formbook
let malicious_hashes = dynamic(["74eb42416b47c082fc867764b577ceac6f1bd68e192695d79a9e48a7bd3fdd69", "aa68f095eebfae5a1122dd82c9c4e9373af1b0ec", "2d5137f186bd8f99e610367e7bab3631"]);
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 |
Scenario 1: Automated Browser Data Backup via Enterprise Tools
svc-intune-backup) and destined for known enterprise storage domains (e.g., *.azureedge.net, s3.amazonaws.com). Additionally, filter out connections where the user agent string explicitly contains “Microsoft.Intune” or “WorkspaceOne”.Scenario 2: Legitimate Phishing Simulation Campaigns
*.knowbe4.com, *.proofpoint.com) during specific campaign windows. Implement a filter that suppresses alerts if the source email is tagged with an internal “Simulation” header or originates from a dedicated security distribution list.Scenario 3: Scheduled Cryptocurrency Wallet Syncing for Corporate Treasury *