This hypothesis detects adversary activity involving specific indicators of compromise (IOCs) linked to the KongTuke malware campaign, which is known for targeting enterprise environments through malicious document execution and lateral movement. A proactive hunt in Azure Sentinel is essential to identify early-stage infections before they escalate into widespread data exfiltration or ransomware deployment across the organization’s cloud infrastructure.
Malware Family: KongTuke Total IOCs: 4 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://marhhetti.sbs/api/v1/status | payload_delivery | 2026-09-01 | 100% |
| url | hxxps://marhhetti.sbs/api/v1/session | payload_delivery | 2026-09-01 | 100% |
| url | hxxps://marhhetti.sbs/api/v1/verify | payload_delivery | 2026-09-01 | 100% |
| domain | marhhetti.sbs | payload_delivery | 2026-09-01 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["marhhetti.sbs"]);
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://marhhetti.sbs/api/v1/status", "https://marhhetti.sbs/api/v1/session", "https://marhhetti.sbs/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 5 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates via Microsoft Defender
Process Name is MsMpEng.exe (Microsoft Defender) or Symantec Endpoint Protection Client, and the User Account matches the service account used for updates (e.g., NT SERVICE\wuauserv).Scenario: Cloud Backup Synchronization via Veeam or Commvault
VeeamAgent.exe or CommServe.exe when the destination IP falls within the organization’s trusted cloud backup CIDR block (e.g., 10.20.30.0/24).Scenario: Patch Management Deployment via SCCM/Intune