This hunt detects adversary activity linked to the KongTuke malware by monitoring for specific indicators of compromise across the Azure Sentinel environment. Proactively hunting these IOCs is critical because early identification of this high-severity threat enables rapid containment before the malware can establish persistence or exfiltrate sensitive data.
Malware Family: KongTuke Total IOCs: 10 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://leannnn.lol/file.js | payload_delivery | 2026-07-03 | 100% |
| domain | leannnn.lol | payload_delivery | 2026-07-03 | 100% |
| url | hxxps://leannnn.lol/api/v1/session | payload_delivery | 2026-07-03 | 100% |
| url | hxxps://leannnn.lol/api/v1/verify | payload_delivery | 2026-07-03 | 100% |
| url | hxxps://farrerl.lol/file.js | payload_delivery | 2026-07-03 | 100% |
| domain | farrerl.lol | payload_delivery | 2026-07-03 | 100% |
| url | hxxps://farrerl.lol/api/v1/session | payload_delivery | 2026-07-03 | 100% |
| url | hxxps://farrerl.lol/api/v1/verify | payload_delivery | 2026-07-03 | 100% |
| domain | tommy-y.lol | payload_delivery | 2026-07-03 | 100% |
| url | hxxps://tommy-y.lol/o | payload_delivery | 2026-07-03 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["leannnn.lol", "farrerl.lol", "tommy-y.lol"]);
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://leannnn.lol/file.js", "https://leannnn.lol/api/v1/session", "https://leannnn.lol/api/v1/verify", "https://farrerl.lol/file.js", "https://farrerl.lol/api/v1/session", "https://farrerl.lol/api/v1/verify", "https://tommy-y.lol/o"]);
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 in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Scanning of Quarantine Archives
Source Process is the EDR scanner service (e.g., C:\Program Files\CrowdStrike\fs.exe) AND the File Path contains keywords like \Quarantine\, \Archive\, or \Staging\.Scheduled Third-Party Patch Management Deployment
Saturday 01:00 and Sunday 06:00 where the Parent Process Name is IvantiPatchAgent.exe or ccmexec.exe, and the User Account belongs to the IT-Service-Accounts security group.**SIEM Log In