This hunt detects adversary activity by correlating network and endpoint logs against a curated set of 11 Indicators of Compromise (IOCs) specifically linked to the Kuiper threat campaign. Proactively hunting for these IOCs in Azure Sentinel is critical because it enables early identification of known malicious artifacts, allowing the SOC team to contain potential breaches before they escalate into widespread incidents.
Malware Family: Kuiper Total IOCs: 11 IOC Types: sha1_hash, sha256_hash, md5_hash
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| md5_hash | 56160fa06b16e3822879e77aa47f0764 | payload | 2026-08-15 | 95% |
| sha256_hash | dc33f06c86f021af72cc89e1feafa16dad624d43a79242ab738518480a0aef88 | payload | 2026-08-15 | 95% |
| sha1_hash | 6e6db8bfff48fb23ca12b33a4c0272d787633e06 | payload | 2026-08-15 | 95% |
| sha1_hash | 9d54fa92c215c6ae6eb7b238ba640c10d9ae2c2c | payload | 2026-08-15 | 95% |
| md5_hash | b3fabcc24d9c8b12a02126d2102a48f9 | payload | 2026-08-15 | 95% |
| sha256_hash | 8daa6c064b47a03c85bc0eff732da07e0e8966cfc69771e3b9597cad9a155b13 | payload | 2026-08-15 | 95% |
| md5_hash | d9e1f05c2fef02d320bc2b6aa901f4fd | payload | 2026-08-15 | 95% |
| sha256_hash | ed6a55a28e22520219c90adeb569c114ab8f01f1e1f2674e06615fe046e7a291 | payload | 2026-08-15 | 95% |
| sha1_hash | f24465bbae171b3b2dadc5403cac20e6a22bb7b3 | payload | 2026-08-15 | 95% |
| sha1_hash | de1efd1c7a44c5fd268cba68dd9ad9fbc4587536 | payload | 2026-08-15 | 95% |
| md5_hash | 762792354f7114f7de7420b0c2d77912 | payload | 2026-08-15 | 95% |
// Hunt for files matching known malicious hashes
// Source: ThreatFox - Kuiper
let malicious_hashes = dynamic(["56160fa06b16e3822879e77aa47f0764", "dc33f06c86f021af72cc89e1feafa16dad624d43a79242ab738518480a0aef88", "6e6db8bfff48fb23ca12b33a4c0272d787633e06", "9d54fa92c215c6ae6eb7b238ba640c10d9ae2c2c", "b3fabcc24d9c8b12a02126d2102a48f9", "8daa6c064b47a03c85bc0eff732da07e0e8966cfc69771e3b9597cad9a155b13", "d9e1f05c2fef02d320bc2b6aa901f4fd", "ed6a55a28e22520219c90adeb569c114ab8f01f1e1f2674e06615fe046e7a291", "f24465bbae171b3b2dadc5403cac20e6a22bb7b3", "de1efd1c7a44c5fd268cba68dd9ad9fbc4587536", "762792354f7114f7de7420b0c2d77912"]);
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 the documented false positive scenarios and corresponding exclusions for the ThreatFox: Kuiper IOCs detection rule:
Scenario: Scheduled Antivirus Definition Updates
MsMpEng.exe (Defender) or FalconSensor.exe (CrowdStrike) when executed under the system account (NT AUTHORITY\SYSTEM) during the maintenance window (e.g., 02:00 – 04:00 UTC).Scenario: Automated Cloud Backup and Sync Jobs
svc-onedrive-sync) and limiting the scope to known internal subnets (e.g., 10.20.x.x). Additionally, exclude connections where the destination port is strictly 443 (HTTPS) and the process path contains \Microsoft OneDrive\.Scenario: Patch Management Deployment via SCCM