← Back to SOC feed Coverage →

ThreatFox: Remcos IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
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-07-14T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior consistent with the Remcos Remote Access Trojan (RAT), specifically looking for network connections or file artifacts matching its known Indicators of Compromise to identify active command-and-control communications. Proactively hunting for these signatures in Azure Sentinel is critical because early detection of this sophisticated RAT can prevent data exfiltration and lateral movement before the adversary establishes a persistent foothold within the environment.

IOC Summary

Malware Family: Remcos Total IOCs: 13 IOC Types: domain, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port46[.]151[.]182[.]38:8080botnet_cc2026-07-1475%
domainconnectus.cristianoobrigado.shopbotnet_cc2026-07-1475%
ip:port173[.]231[.]188[.]245:21075botnet_cc2026-07-1475%
ip:port216[.]9[.]225[.]38:14649botnet_cc2026-07-1475%
ip:port204[.]44[.]69[.]214:14647botnet_cc2026-07-1475%
ip:port192[.]255[.]195[.]147:14647botnet_cc2026-07-1475%
ip:port185[.]115[.]164[.]60:65531botnet_cc2026-07-1475%
ip:port185[.]115[.]164[.]60:11883botnet_cc2026-07-1475%
ip:port172[.]111[.]169[.]69:56090botnet_cc2026-07-1475%
ip:port46[.]183[.]222[.]96:465botnet_cc2026-07-1475%
ip:port204[.]44[.]69[.]214:14644botnet_cc2026-07-1475%
domainjudasbuoyeahuruhusitemnaakezigbonduyaaaa.duckdns.orgbotnet_cc2026-07-1475%
ip:port213[.]152[.]162[.]21:11525botnet_cc2026-07-1475%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["173.231.188.245", "204.44.69.214", "185.115.164.60", "216.9.225.38", "46.183.222.96", "192.255.195.147", "213.152.162.21", "46.151.182.38", "172.111.169.69"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["173.231.188.245", "204.44.69.214", "185.115.164.60", "216.9.225.38", "46.183.222.96", "192.255.195.147", "213.152.162.21", "46.151.182.38", "172.111.169.69"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Remcos
let malicious_domains = dynamic(["connectus.cristianoobrigado.shop", "judasbuoyeahuruhusitemnaakezigbonduyaaaa.duckdns.org"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: Remcos IOCs detection rule, tailored for an enterprise environment:

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