This hunt detects adversary behavior consistent with the KongTuke threat actor by identifying network and host artifacts matching six specific Indicators of Compromise (IOCs). Proactively hunting for these IOCs in Azure Sentinel is critical to rapidly identify early-stage intrusions and mitigate potential data exfiltration before the adversary establishes persistence.
Malware Family: KongTuke Total IOCs: 6 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://meduurst.space/api/v1/status | payload_delivery | 2026-07-20 | 100% |
| domain | nodemetrics9095.com | payload_delivery | 2026-07-20 | 100% |
| url | hxxps://nodemetrics9095.com/update/package | payload_delivery | 2026-07-20 | 100% |
| domain | meduurst.space | payload_delivery | 2026-07-20 | 100% |
| url | hxxps://meduurst.space/api/v1/session | payload_delivery | 2026-07-20 | 100% |
| url | hxxps://meduurst.space/api/v1/verify | payload_delivery | 2026-07-20 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["nodemetrics9095.com", "meduurst.space"]);
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://meduurst.space/api/v1/status", "https://nodemetrics9095.com/update/package", "https://meduurst.space/api/v1/session", "https://meduurst.space/api/v1/verify"]);
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:
Antivirus Endpoint Scanning of Quarantine Archives
csagent.exe, MsMpEng.exe) and the destination path matches the standard quarantine or feed update directory (e.g., \ProgramData\Microsoft\Windows Defender\Updates).Scheduled Threat Intelligence Feed Ingestion by SIEM/SOAR
SIEM-INGEST-SRV01) and restrict alerts to specific time windows outside of business hours (e.g., 02:00–04:00 UTC) when these scheduled ingestion jobs typically run.Red Team Simulation or Purple Team Exercises