← Back to SOC feed Coverage →

ThreatFox: KongTuke IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocjs-kongtukethreatfox
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-12T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity by searching for seven specific Indicators of Compromise (IOCs) linked to the KongTuke threat actor within Azure Sentinel logs. Proactively hunting for these IOCs is critical because early identification allows the SOC team to rapidly isolate affected assets and mitigate potential data exfiltration or lateral movement before the threat escalates.

IOC Summary

Malware Family: KongTuke Total IOCs: 7 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
domaincorralos.beerpayload_delivery2026-08-12100%
urlhxxps://corralos.beer/api/v1/sessionpayload_delivery2026-08-12100%
urlhxxps://corralos.beer/api/v1/verifypayload_delivery2026-08-12100%
urlhxxps://corralos.beer/api/v1/statuspayload_delivery2026-08-12100%
urlhxxps://herndndes.beer/api/v1/verifypayload_delivery2026-08-12100%
urlhxxps://herndndes.beer/api/v1/sessionpayload_delivery2026-08-12100%
domainherndndes.beerpayload_delivery2026-08-12100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - KongTuke
let malicious_domains = dynamic(["corralos.beer", "herndndes.beer"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - KongTuke
let malicious_urls = dynamic(["https://corralos.beer/api/v1/session", "https://corralos.beer/api/v1/verify", "https://corralos.beer/api/v1/status", "https://herndndes.beer/api/v1/verify", "https://herndndes.beer/api/v1/session"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 3-5 specific false positive scenarios for the ThreatFox: KongTuke IOCs detection rule, along with suggested filters and exclusions tailored for a legitimate enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/js.kongtuke/