← Back to SOC feed Coverage →

ThreatFox: Quasar RAT IOCs

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

Hunt Hypothesis

This hunt detects adversary behavior involving the deployment of Quasar Remote Access Trojan (RAT) by identifying eight specific indicators of compromise that facilitate persistent access and command-and-control communication. A SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify early-stage infections, prevent lateral movement, and mitigate potential data exfiltration before the adversary establishes a long-term foothold within the environment.

IOC Summary

Malware Family: Quasar RAT Total IOCs: 8 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port118[.]25[.]188[.]245:4782botnet_cc2026-08-2175%
ip:port186[.]169[.]78[.]50:6001botnet_cc2026-08-2175%
ip:port186[.]169[.]78[.]50:1100botnet_cc2026-08-2175%
ip:port178[.]16[.]52[.]169:4782botnet_cc2026-08-2175%
ip:port207[.]189[.]15[.]159:4782botnet_cc2026-08-2175%
ip:port198[.]12[.]83[.]91:4782botnet_cc2026-08-2175%
ip:port217[.]156[.]65[.]42:4782botnet_cc2026-08-2175%
ip:port118[.]25[.]103[.]144:8888botnet_cc2026-08-21100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Quasar RAT
let malicious_ips = dynamic(["217.156.65.42", "118.25.103.144", "178.16.52.169", "118.25.188.245", "207.189.15.159", "186.169.78.50", "198.12.83.91"]);
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(["217.156.65.42", "118.25.103.144", "178.16.52.169", "118.25.188.245", "207.189.15.159", "186.169.78.50", "198.12.83.91"]);
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

False Positive Scenarios for “ThreatFox: Quasar RAT IOCs”

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