This hunt detects adversary activity involving the specific indicators of compromise (IOCs) linked to the KongTuke threat actor, enabling the identification of potential intrusions within the Azure Sentinel environment. Proactively hunting for these IOCs is critical because it allows the SOC team to rapidly validate and contain early-stage threats before they escalate into broader compromises across the organization’s cloud infrastructure.
Malware Family: KongTuke Total IOCs: 12 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://bouoher.lol/api/v1/session | payload_delivery | 2026-07-23 | 100% |
| domain | bouoher.lol | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://bouoher.lol/api/v1/verify | payload_delivery | 2026-07-23 | 100% |
| domain | aeshire.click | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://aeshire.click/api/v1/session | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://aeshire.click/api/v1/verify | payload_delivery | 2026-07-23 | 100% |
| domain | barringer.click | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://barringer.click/api/v1/session | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://barringer.click/api/v1/verify | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://barringer.click/api/v1/status | payload_delivery | 2026-07-23 | 100% |
| url | hxxps://tommy-bb.lol/f | payload_delivery | 2026-07-23 | 100% |
| domain | tommy-bb.lol | payload_delivery | 2026-07-23 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["bouoher.lol", "aeshire.click", "barringer.click", "tommy-bb.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://bouoher.lol/api/v1/session", "https://bouoher.lol/api/v1/verify", "https://aeshire.click/api/v1/session", "https://aeshire.click/api/v1/verify", "https://barringer.click/api/v1/session", "https://barringer.click/api/v1/verify", "https://barringer.click/api/v1/status", "https://tommy-bb.lol/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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Endpoint Security Engine Scanning of Historical Archives
Process Name is C:\Program Files\CrowdStrike\csagent.exe or MsMpEng.exe AND the File Path contains \Backup\ or \Archive\. Additionally, add a filter to suppress alerts if the file’s Last Modified Date is older than 90 days.Scenario: Scheduled Malware Analysis Jobs on Shared Network Drives
\\FileServer\Public). If a KongTuke IOC hash exists within a public folder used by multiple departments, the scheduled job will trigger a detection every time it runs, even if the file is a known benign template.DOMAIN\VeeamSvc or DOMAIN\BackupAdmin) interacting with network paths starting with \\FileServer\. Configure the detection logic to ignore events where the User Type is “Service Account” and the Source IP belongs to the internal backup subnet.