This detection rule identifies the initial infection phase of the KongTuke malware by monitoring for Command-and-Control communications and persistence mechanisms associated with its downloader/backdoor capabilities. Proactive hunting is essential to rapidly isolate compromised endpoints before the adversary can establish long-term footholds and exfiltrate sensitive data through phishing-driven entry points.
Malware Family: KongTuke Total IOCs: 3 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://bouoher.lol/api/v1/status | payload_delivery | 2026-07-24 | 100% |
| url | hxxps://tommy-ee.top/f | payload_delivery | 2026-07-24 | 100% |
| domain | tommy-ee.top | payload_delivery | 2026-07-24 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["tommy-ee.top"]);
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://bouoher.lol/api/v1/status", "https://tommy-ee.top/f"]);
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 5 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Phishing Simulation Campaigns
198.51.100.0/24 for KnowBe4) or exclude URLs containing known simulation domains (e.g., *.knowbe4.com, *.proofpoint.com) where the destination URL path contains /simulation or /campaign.Scenario: Enterprise Backup and Exfiltration Jobs
443, 873 for NFS, or specific vendor ports like 9025) and the source process is identified as the backup agent executable (e.g., VeeamTransportService.exe, rubrik-agent.exe). Additionally, exclude traffic destined to known cloud storage IP ranges during defined maintenance windows.**Scenario: Software Update Mechanisms for Endpoint