This hunt detects adversary activity linked to the KongTuke malware by identifying matches against six specific Indicators of Compromise (IOCs) within network and endpoint logs. Proactively hunting for these IOCs in Azure Sentinel is critical because it enables early identification of potential infections before they escalate into broader lateral movements or data exfiltration events.
Malware Family: KongTuke Total IOCs: 6 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://reindardt.lol/api/v1/status | payload_delivery | 2026-07-01 | 100% |
| url | hxxps://reindardt.lol/file.js | payload_delivery | 2026-07-01 | 100% |
| domain | reindardt.lol | payload_delivery | 2026-07-01 | 100% |
| url | hxxps://reindardt.lol/api/v1/session | payload_delivery | 2026-07-01 | 100% |
| url | hxxps://reindardt.lol/api/v1/verify | payload_delivery | 2026-07-01 | 100% |
| url | hxxps://schuttc.lol/api/v1/status | payload_delivery | 2026-07-01 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["reindardt.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://reindardt.lol/api/v1/status", "https://reindardt.lol/file.js", "https://reindardt.lol/api/v1/session", "https://reindardt.lol/api/v1/verify", "https://schuttc.lol/api/v1/status"]);
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 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, tailored for an enterprise environment using common security and IT management tools.
Endpoint Protection Policy Updates via CrowdStrike Falcon
C:\Program Files\CrowdStrike\csagent.exe process path and whitelist the specific SHA256 hashes of the CrowdStrike update packages known to contain these IOCs. Additionally, exclude traffic originating from the internal CrowdStrike management subnet (e.g., 10.x.x.x/24) destined for the Falcon cloud endpoints.Automated Patch Deployment via Microsoft SCCM (Configuration Manager)
%TEMP%) before moving to the Program Files directory, mimicking initial infection behavior.ccmexec.exe (the SCCM client agent) or wuauserv.exe. Furthermore, add an exclusion for file paths starting with %TEMP%\CCMCache\ and whitelist the specific software update KB numbers associated with the vendor known to generate these IOCs.**Cloud