← Back to SOC feed Coverage →

ThreatFox: KongTuke IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocjs-kongtukethreatfox
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-20T23:00:00Z · Confidence: high

Hunt Hypothesis

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.

IOC Summary

Malware Family: KongTuke Total IOCs: 6 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://meduurst.space/api/v1/statuspayload_delivery2026-07-20100%
domainnodemetrics9095.compayload_delivery2026-07-20100%
urlhxxps://nodemetrics9095.com/update/packagepayload_delivery2026-07-20100%
domainmeduurst.spacepayload_delivery2026-07-20100%
urlhxxps://meduurst.space/api/v1/sessionpayload_delivery2026-07-20100%
urlhxxps://meduurst.space/api/v1/verifypayload_delivery2026-07-20100%

KQL: Domain Hunt

// 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

KQL: Url Hunt

// 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

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, tailored for an enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/js.kongtuke/