← Back to SOC feed Coverage →

ThreatFox: Remcos IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
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-05-05T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: Remcos IOCs rule detects potential Remcos malware activity by identifying known malicious indicators associated with this remote access trojan. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate early-stage Remcos infections before they lead to data exfiltration or lateral movement.

IOC Summary

Malware Family: Remcos Total IOCs: 9 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port5[.]180[.]82[.]239:2404botnet_cc2026-05-0575%
ip:port5[.]101[.]86[.]97:6913botnet_cc2026-05-0575%
ip:port5[.]101[.]82[.]99:6031botnet_cc2026-05-0575%
ip:port5[.]101[.]86[.]11:2428botnet_cc2026-05-0575%
ip:port5[.]101[.]82[.]227:9521botnet_cc2026-05-0575%
ip:port46[.]151[.]182[.]33:9545botnet_cc2026-05-0575%
ip:port135[.]136[.]148[.]120:2003botnet_cc2026-05-0575%
ip:port130[.]49[.]214[.]74:62582botnet_cc2026-05-0575%
ip:port209[.]99[.]187[.]44:2404botnet_cc2026-05-0575%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["5.101.86.97", "5.101.82.227", "5.101.86.11", "46.151.182.33", "209.99.187.44", "135.136.148.120", "5.101.82.99", "5.180.82.239", "130.49.214.74"]);
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(["5.101.86.97", "5.101.82.227", "5.101.86.11", "46.151.182.33", "209.99.187.44", "135.136.148.120", "5.101.82.99", "5.180.82.239", "130.49.214.74"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

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

References

False Positive Guidance

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