This hypothesis targets the presence of eight specific IOCs linked to the KongTuke threat actor, indicating potential compromise through known malicious artifacts or network indicators. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify early-stage intrusion attempts and mitigate the high-severity risk before the adversary can establish persistence or execute lateral movement.
Malware Family: KongTuke Total IOCs: 8 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://opsbyte3368.com/b | payload_delivery | 2026-09-07 | 100% |
| domain | opsbyte3368.com | payload_delivery | 2026-09-07 | 100% |
| url | hxxps://opsbyte3368.com/ue | payload_delivery | 2026-09-07 | 100% |
| url | hxxps://schamserger.top/api/v1/status | payload_delivery | 2026-09-07 | 100% |
| url | hxxps://schamserger.top/b | payload_delivery | 2026-09-07 | 100% |
| domain | schamserger.top | payload_delivery | 2026-09-07 | 100% |
| url | hxxps://schamserger.top/api/v1/session | payload_delivery | 2026-09-07 | 100% |
| url | hxxps://schamserger.top/api/v1/verify | payload_delivery | 2026-09-07 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["opsbyte3368.com", "schamserger.top"]);
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://opsbyte3368.com/b", "https://opsbyte3368.com/ue", "https://schamserger.top/api/v1/status", "https://schamserger.top/b", "https://schamserger.top/api/v1/session", "https://schamserger.top/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 |
agent.exe, docker.exe, kubectl.exe) and the parent process is a container runtime or build tool (e.g., dockerd, containerd-shim).UpdateService.exe, msiexec.exe, wsus.exe) and the user account is a service account (e.g., svc_updater, DOMAIN\svc_patch).yara64.exe or volatility3 on a host, which temporarily creates files or loads modules matching KongTuke IOCs (e.g., specific memory signatures or temporary file paths) as part of the forensic investigation process.
yara64.exe, volatility3.exe, `f