← 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-09-03T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of known IOCs associated with the Remcos remote access trojan, which adversaries deploy to establish persistent, stealthy control over compromised endpoints. Proactively hunting for these indicators in Azure Sentinel is critical because Remcos is frequently used in targeted attacks to exfiltrate data and execute lateral movement, allowing the SOC to identify and isolate infected assets before the threat actor achieves their operational objectives.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port193[.]26[.]115[.]223:4411botnet_cc2026-09-03100%
ip:port217[.]60[.]195[.]34:18631botnet_cc2026-09-03100%
ip:port184[.]107[.]115[.]238:2404botnet_cc2026-09-03100%
ip:port107[.]161[.]168[.]253:7789botnet_cc2026-09-03100%
ip:port172[.]111[.]131[.]3:56090botnet_cc2026-09-03100%
ip:port213[.]152[.]162[.]108:49006botnet_cc2026-09-03100%
ip:port204[.]44[.]69[.]221:2626botnet_cc2026-09-03100%
ip:port155[.]103[.]69[.]38:14647botnet_cc2026-09-03100%
ip:port217[.]60[.]195[.]210:2404botnet_cc2026-09-03100%
ip:port217[.]60[.]195[.]33:17545botnet_cc2026-09-03100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["184.107.115.238", "107.161.168.253", "204.44.69.221", "217.60.195.210", "155.103.69.38", "172.111.131.3", "217.60.195.33", "217.60.195.34", "213.152.162.108", "193.26.115.223"]);
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(["184.107.115.238", "107.161.168.253", "204.44.69.221", "217.60.195.210", "155.103.69.38", "172.111.131.3", "217.60.195.33", "217.60.195.34", "213.152.162.108", "193.26.115.223"]);
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/