This hunt detects adversary activity linked to the KongTuke campaign by identifying specific indicators of compromise (IOCs) that signal potential initial access or lateral movement within the environment. A SOC team should proactively hunt for these signals in Azure Sentinel to rapidly identify and contain early-stage infections before they escalate into broader data exfiltration or ransomware events.
Malware Family: KongTuke Total IOCs: 3 IOC Types: url, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://griffihhs.click/api/v1/status | payload_delivery | 2026-07-29 | 100% |
| url | hxxps://tom-yy.top/f | payload_delivery | 2026-07-29 | 100% |
| domain | tom-yy.top | payload_delivery | 2026-07-29 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["tom-yy.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://griffihhs.click/api/v1/status", "https://tom-yy.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 4 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates via Third-Party Tools
FalconSensor.exe or SentinelOneAgent.exe) and the Parent Process (svchost.exe). Additionally, exclude traffic originating from known update server IP ranges (e.g., 13.229.0.0/16 for CrowdStrike) during standard maintenance windows (e.g., 02:00–04:00 local time).Scenario: Admin Deployment of Internal Security Tools via SCCM
DOMAIN\AdminGroup. Alternatively, whitelist the specific SCCM deployment job ID associated with this security tool update in the SIEM correlation rule.Scenario: Automated Backup Jobs Executing on File Servers