← Back to SOC feed Coverage →

ThreatFox: Remcos IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxwin-remcos
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-13T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary behavior where a Remote Access Trojan (Remcos) is deployed via phishing vectors to establish persistence and enable remote command execution for data exfiltration. The SOC team should proactively hunt for these indicators in Azure Sentinel because Remcos’s ability to maintain long-term access allows attackers to silently extract sensitive information before detection, necessitating early identification of its specific IOCs to prevent widespread compromise.

IOC Summary

Malware Family: Remcos Total IOCs: 2 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
domainmbcasesores.combotnet_cc2026-08-13100%
urlhxxps://mbcasesores.com/tap/BBVA_pdf.zipbotnet_cc2026-08-13100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Remcos
let malicious_domains = dynamic(["mbcasesores.com"]);
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 - Remcos
let malicious_urls = dynamic(["https://mbcasesores.com/tap/BBVA_pdf.zip"]);
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

False Positive Scenarios for “ThreatFox: Remcos IOCs” Rule

Original source: https://threatfox.abuse.ch/browse/malware/win.remcos/