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.
Malware Family: Quasar RAT Total IOCs: 8 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 118[.]25[.]188[.]245:4782 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 186[.]169[.]78[.]50:6001 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 186[.]169[.]78[.]50:1100 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 178[.]16[.]52[.]169:4782 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 207[.]189[.]15[.]159:4782 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 198[.]12[.]83[.]91:4782 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 217[.]156[.]65[.]42:4782 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 118[.]25[.]103[.]144:8888 | botnet_cc | 2026-08-21 | 100% |
// 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
// 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
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Scenario: Security Team Manual IOC Hunting
Security_Ops or SOC_Admin groups, specifically when the source process is the EDR management console (e.g., C:\Program Files\Microsoft Defender\MsMpEng.exe running under the SYSTEM account) or the SIEM ingestion service.Scenario: Scheduled Endpoint Protection Updates
Symantec Endpoint Protection Client or Carbon Black Sensor) running under the Local System account.Scenario: DevOps CI/CD Pipeline Artifact Scanning