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

Hunt Hypothesis

This hunt targets adversary behavior involving the deployment of Remcos remote access trojans by monitoring network traffic and process executions against a curated set of 24 threat intelligence indicators. Proactively hunting for these specific IOCs in Azure Sentinel is critical to detect early-stage lateral movement and command-and-control communications before they escalate into full-scale data exfiltration incidents.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port155[.]103[.]69[.]30:14644botnet_cc2026-07-0375%
ip:port113[.]31[.]102[.]219:21915botnet_cc2026-07-0375%
ip:port103[.]11[.]41[.]20:7805botnet_cc2026-07-0375%
ip:port103[.]11[.]41[.]10:54976botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14869botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14865botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14866botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14867botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14868botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14864botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14862botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14863botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14859botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14860botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14861botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14855botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14856botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14857botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14858botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14634botnet_cc2026-07-0375%
ip:port196[.]251[.]121[.]165:14854botnet_cc2026-07-0375%
ip:port107[.]172[.]13[.]198:2404botnet_cc2026-07-0375%
domainwww.ikukuomagloballimited1.combotnet_cc2026-07-0375%
domainwww.ikukuomagloballimited2.combotnet_cc2026-07-0375%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["103.11.41.20", "113.31.102.219", "196.251.121.165", "155.103.69.30", "103.11.41.10", "107.172.13.198"]);
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.20", "113.31.102.219", "196.251.121.165", "155.103.69.30", "103.11.41.10", "107.172.13.198"]);
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(["www.ikukuomagloballimited1.com", "www.ikukuomagloballimited2.com"]);
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 and corresponding exclusion strategies for the ThreatFox: Remcos IOCs detection rule in an enterprise environment:

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