← Back to SOC feed Coverage →

ThreatFox: KongTuke IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEventsUrlClickEvents
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-11T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior consistent with the KongTuke threat actor by actively scanning Azure Sentinel logs against a curated set of 13 Indicators of Compromise (IOCs). Proactively executing this search is critical to identify early-stage infections or lateral movement attempts that may have bypassed standard signature-based detections, ensuring rapid containment before the threat escalates.

IOC Summary

Malware Family: KongTuke Total IOCs: 13 IOC Types: url, ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
domaing70jv5jnisaopa3.topbotnet_cc2026-07-11100%
domainclkd3xc031atgdk.topbotnet_cc2026-07-11100%
domaindht5z2yx50uypbr.topbotnet_cc2026-07-11100%
ip:port64[.]95[.]13[.]85:80botnet_cc2026-07-1175%
ip:port64[.]95[.]13[.]85:443botnet_cc2026-07-1175%
urlhxxps://leconto.lol/api/v1/statuspayload_delivery2026-07-11100%
urlhxxps://cloudupdate8155.com/update/packagepayload_delivery2026-07-11100%
domaincloudupdate8155.compayload_delivery2026-07-11100%
urlhxxps://thibahlt.lol/file.jspayload_delivery2026-07-11100%
domainthibahlt.lolpayload_delivery2026-07-11100%
urlhxxps://thibahlt.lol/api/v1/sessionpayload_delivery2026-07-11100%
urlhxxps://thibahlt.lol/api/v1/verifypayload_delivery2026-07-11100%
urlhxxps://thibahlt.lol/api/v1/statuspayload_delivery2026-07-11100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - KongTuke
let malicious_ips = dynamic(["64.95.13.85"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["64.95.13.85"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["g70jv5jnisaopa3.top", "clkd3xc031atgdk.top", "dht5z2yx50uypbr.top", "cloudupdate8155.com", "thibahlt.lol"]);
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://leconto.lol/api/v1/status", "https://cloudupdate8155.com/update/package", "https://thibahlt.lol/file.js", "https://thibahlt.lol/api/v1/session", "https://thibahlt.lol/api/v1/verify", "https://thibahlt.lol/api/v1/status"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule in an enterprise environment, including suggested filters and exclusions:

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