Hunt package for 9 IOCs associated with Remcos
Malware Family: Remcos Total IOCs: 9 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 141[.]98[.]10[.]162:2404 | botnet_cc | 2026-03-19 | 100% |
| ip:port | 107[.]189[.]23[.]49:2404 | botnet_cc | 2026-03-19 | 100% |
| ip:port | 172[.]111[.]232[.]233:8201 | botnet_cc | 2026-03-19 | 100% |
| domain | www.crysaltimedubai.com | botnet_cc | 2026-03-18 | 100% |
| domain | www.crysaltimedubaibackup1.com | botnet_cc | 2026-03-18 | 100% |
| domain | www.crysaltimedubaibackup2.com | botnet_cc | 2026-03-18 | 100% |
| ip:port | 45[.]74[.]48[.]103:3421 | botnet_cc | 2026-03-18 | 100% |
| ip:port | 147[.]45[.]179[.]125:34610 | botnet_cc | 2026-03-18 | 100% |
| ip:port | 45[.]59[.]163[.]56:4550 | botnet_cc | 2026-03-18 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["107.189.23.49", "45.59.163.56", "147.45.179.125", "172.111.232.233", "45.74.48.103", "141.98.10.162"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["107.189.23.49", "45.59.163.56", "147.45.179.125", "172.111.232.233", "45.74.48.103", "141.98.10.162"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Remcos
let malicious_domains = dynamic(["www.crysaltimedubai.com", "www.crysaltimedubaibackup1.com", "www.crysaltimedubaibackup2.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |