This hunt targets adversary activity linked to the KongTuke threat by actively searching for six specific Indicators of Compromise (IOCs) across the Azure Sentinel environment. Proactively hunting for these signatures is critical because early detection of this high-severity threat enables the SOC team to rapidly contain potential lateral movement and data exfiltration before they escalate into a full-scale incident.
Malware Family: KongTuke Total IOCs: 6 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://ackeamann.xyz/file.js | payload_delivery | 2026-06-30 | 100% |
| domain | ackeamann.xyz | payload_delivery | 2026-06-30 | 100% |
| url | hxxps://ackeamann.xyz/api/v1/session | payload_delivery | 2026-06-30 | 100% |
| url | hxxps://ackeamann.xyz/api/v1/verify | payload_delivery | 2026-06-30 | 100% |
| url | hxxps://ackeamann.xyz/api/v1/status | payload_delivery | 2026-06-30 | 100% |
| url | hxxps://datacrypt5840.top/update/package | payload_delivery | 2026-06-30 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["ackeamann.xyz"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - KongTuke
let malicious_urls = dynamic(["https://ackeamann.xyz/file.js", "https://ackeamann.xyz/api/v1/session", "https://ackeamann.xyz/api/v1/verify", "https://ackeamann.xyz/api/v1/status", "https://datacrypt5840.top/update/package"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, tailored for an enterprise environment:
Endpoint Protection Policy Updates via CrowdStrike Falcon
ProcessName is CortexSys.exe or FalconSensorService.exe and the ParentProcess is svchost.exe, provided the execution occurs between 01:30 UTC and 04:30 UTC.Scheduled Data Backup Jobs via Veeam Backup & Replication
SRV-HR-DB01 host.SRV-HR-DB01 combined with a filter on the CommandLine argument containing -backup-mode, or exclude the specific file hash if it matches the known benign signature stored in the asset inventory.Software Deployment via Microsoft SCCM (Configuration Manager)