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

Hunt Hypothesis

This hunt targets adversary behavior consistent with the Remcos remote access trojan by scanning Azure Sentinel logs against a curated set of 15 indicators of compromise to identify potential command-and-control communications or lateral movement artifacts. Proactive hunting for these specific IOCs is critical within the Azure environment to detect early-stage infections before they escalate into full-scale data exfiltration incidents, ensuring rapid containment of this high-severity threat.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port45[.]74[.]7[.]173:9521botnet_cc2026-06-2875%
ip:port141[.]98[.]10[.]150:14648botnet_cc2026-06-2875%
ip:port103[.]83[.]87[.]87:25900botnet_cc2026-06-2875%
ip:port103[.]11[.]41[.]20:201botnet_cc2026-06-2875%
ip:port5[.]8[.]19[.]157:14644botnet_cc2026-06-2775%
ip:port5[.]206[.]224[.]226:2404botnet_cc2026-06-2775%
ip:port45[.]74[.]7[.]170:3305botnet_cc2026-06-2775%
ip:port45[.]74[.]7[.]165:8455botnet_cc2026-06-2775%
ip:port45[.]74[.]7[.]169:7312botnet_cc2026-06-2775%
ip:port173[.]231[.]188[.]244:14646botnet_cc2026-06-2775%
ip:port104[.]37[.]173[.]203:14643botnet_cc2026-06-2775%
ip:port103[.]11[.]41[.]20:2753botnet_cc2026-06-2775%
ip:port103[.]11[.]41[.]10:49584botnet_cc2026-06-2775%
ip:port103[.]11[.]41[.]20:9087botnet_cc2026-06-2775%
ip:port144[.]31[.]236[.]240:27018botnet_cc2026-06-2775%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["103.11.41.10", "103.11.41.20", "104.37.173.203", "45.74.7.173", "103.83.87.87", "45.74.7.169", "141.98.10.150", "45.74.7.165", "144.31.236.240", "45.74.7.170", "5.8.19.157", "173.231.188.244", "5.206.224.226"]);
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(["103.11.41.10", "103.11.41.20", "104.37.173.203", "45.74.7.173", "103.83.87.87", "45.74.7.169", "141.98.10.150", "45.74.7.165", "144.31.236.240", "45.74.7.170", "5.8.19.157", "173.231.188.244", "5.206.224.226"]);
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

Here are specific false positive scenarios for the ThreatFox: Remcos IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

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