This hunt detects adversary activity involving specific indicators of compromise (IOCs) linked to the KongTuke malware family, which is known for targeting enterprise environments through sophisticated phishing and lateral movement tactics. Proactively hunting for these IOCs in Azure Sentinel allows the SOC team to identify early-stage infections before they escalate into broader network compromises, ensuring rapid containment and response.
Malware Family: KongTuke Total IOCs: 3 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | conareras.study | payload_delivery | 2026-08-19 | 100% |
| url | hxxps://conareras.study/api/v1/session | payload_delivery | 2026-08-19 | 100% |
| url | hxxps://conareras.study/api/v1/verify | payload_delivery | 2026-08-19 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["conareras.study"]);
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://conareras.study/api/v1/session", "https://conareras.study/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 4 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Security Team Manual IOC Hunting
SOC_Admin, ThreatIntel_User, or Security_Ops. Additionally, filter out events where the process name is hunting_tool.exe (or your specific EDR agent’s manual query tool) running from the Security Operations subnet (e.g., 10.50.20.x).Scenario: Scheduled Antivirus Definition Updates
DefenderSvc.exe, CrowdStrikeService.exe, or SentinelOneAgent.exe and the event type indicates “Definition Update” or “Signature Download.”Scenario: Patch Management Deployment Jobs