← Back to SOC feed Coverage →

ThreatFox: Kuiper IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEvents
elf-kuiperiocthreatfox
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-07-25T11:00:00Z · Confidence: high

Hunt Hypothesis

This rule detects adversary activity by matching network and endpoint telemetry against 24 specific Indicators of Compromise (IOCs) linked to the Kuiper threat cluster. Proactive hunting for these IOCs within Azure Sentinel is critical because their high severity suggests an active campaign that may evade standard signature-based defenses, requiring immediate investigation to prevent potential lateral movement or data exfiltration.

IOC Summary

Malware Family: Kuiper Total IOCs: 24 IOC Types: sha256_hash, md5_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
sha1_hash8bc62193a60f3d63e0e56d4564d08a12fae7036bpayload2026-07-2595%
md5_hashc5d14331d0910a8d4d724b3c00329cedpayload2026-07-2595%
md5_hash844316e11edc801dcad57532a47d45e0payload2026-07-2595%
sha256_hash81775ecf00ef60ef088c4d79d37ad60154dcc43bc8edce4ec56bb509331feaa8payload2026-07-2595%
sha1_hash5dec3afbd81e113a798be61868d1a4835c3ecb6cpayload2026-07-2595%
sha256_hash4132a264cf4d25b6b9104fb6332f9a082e354abf96486c34a07cf5e32277dfd3payload2026-07-2595%
sha256_hashd615bb89afdae1f96c6f60522ddd87e9de781a0826a9070f822c1f344bc86ccepayload2026-07-2595%
sha1_hash4d989e8a514dc79e4622114d0bb40f9dd90d4f3cpayload2026-07-2595%
md5_hash5dae1853a24173ae60859c7ce246ff3dpayload2026-07-2595%
sha256_hasha414b6ef203d4320665d72cf43e98fefbd451123a2c7f10a56728a2cc207ced7payload2026-07-2595%
sha1_hash4075db854bef2e4a9b402515859bbad9477d53acpayload2026-07-2595%
md5_hashe691d9c99d46ee5ef886a9e276d8def9payload2026-07-2595%
md5_hash8c2b56e131814f9db398deb1de15e67epayload2026-07-2595%
sha256_hash70b84b94aa20a52bbb225f76fcb9b7a66c1733ff6665f13fedb5e93645205a9epayload2026-07-2595%
sha1_hash3e5ffafb3f176acc56c78e80252bf604a8bd9b2dpayload2026-07-2595%
sha1_hash382691f2d43661110ad9f015d55427f446719ec0payload2026-07-2595%
md5_hash2f03381aa105015dc380dbf4e4d0e627payload2026-07-2595%
sha256_hash3e5d5288ddfe5d8ad18232a0eb36a4f0d52660c3978b33bc5e9563a217a282c6payload2026-07-2595%
sha256_hashe73c81b0befddfe58f2472dd3a2468d102caacc7cd71a7793b732efa3fdd05d1payload2026-07-2595%
sha1_hash9d0462015be177d700801a1316b8d983d80a4b2cpayload2026-07-2595%
md5_hash78e88d6e7810b936cb1091a196685dccpayload2026-07-2595%
sha256_hashfdb081750d0ce60ab67f4280a7d690a188b47643eae2a26cdff52010c5a6acf8payload2026-07-2595%
sha1_hashc7247cb9a15ce08bfb22e43c65cfe6c90c3c7493payload2026-07-2595%
md5_hashe36370f93cda87df77dddbe1a00a8dccpayload2026-07-2595%

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Kuiper
let malicious_hashes = dynamic(["8bc62193a60f3d63e0e56d4564d08a12fae7036b", "c5d14331d0910a8d4d724b3c00329ced", "844316e11edc801dcad57532a47d45e0", "81775ecf00ef60ef088c4d79d37ad60154dcc43bc8edce4ec56bb509331feaa8", "5dec3afbd81e113a798be61868d1a4835c3ecb6c", "4132a264cf4d25b6b9104fb6332f9a082e354abf96486c34a07cf5e32277dfd3", "d615bb89afdae1f96c6f60522ddd87e9de781a0826a9070f822c1f344bc86cce", "4d989e8a514dc79e4622114d0bb40f9dd90d4f3c", "5dae1853a24173ae60859c7ce246ff3d", "a414b6ef203d4320665d72cf43e98fefbd451123a2c7f10a56728a2cc207ced7", "4075db854bef2e4a9b402515859bbad9477d53ac", "e691d9c99d46ee5ef886a9e276d8def9", "8c2b56e131814f9db398deb1de15e67e", "70b84b94aa20a52bbb225f76fcb9b7a66c1733ff6665f13fedb5e93645205a9e", "3e5ffafb3f176acc56c78e80252bf604a8bd9b2d", "382691f2d43661110ad9f015d55427f446719ec0", "2f03381aa105015dc380dbf4e4d0e627", "3e5d5288ddfe5d8ad18232a0eb36a4f0d52660c3978b33bc5e9563a217a282c6", "e73c81b0befddfe58f2472dd3a2468d102caacc7cd71a7793b732efa3fdd05d1", "9d0462015be177d700801a1316b8d983d80a4b2c", "78e88d6e7810b936cb1091a196685dcc", "fdb081750d0ce60ab67f4280a7d690a188b47643eae2a26cdff52010c5a6acf8", "c7247cb9a15ce08bfb22e43c65cfe6c90c3c7493", "e36370f93cda87df77dddbe1a00a8dcc"]);
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

Required Data Sources

Sentinel TableNotes
DeviceFileEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Kuiper IOCs rule, tailored to a legitimate enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/elf.kuiper/