This hunt detects adversary activity involving the Quasar Remote Access Trojan (RAT) by identifying specific indicators of compromise such as unique file hashes and network connections that signal potential command-and-control communication or data exfiltration. The SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify early-stage infections, enabling swift containment before the RAT establishes persistence and escalates privileges within the environment.
Malware Family: Quasar RAT Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 194[.]59[.]30[.]130:5000 | botnet_cc | 2026-07-28 | 100% |
| ip:port | 38[.]128[.]251[.]36:3000 | botnet_cc | 2026-07-28 | 100% |
| ip:port | 91[.]199[.]133[.]59:1604 | botnet_cc | 2026-07-28 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Quasar RAT
let malicious_ips = dynamic(["91.199.133.59", "38.128.251.36", "194.59.30.130"]);
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(["91.199.133.59", "38.128.251.36", "194.59.30.130"]);
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 |
Here are 4 specific false positive scenarios for the ThreatFox: Quasar RAT IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Security Tool Communication with Threat Intelligence Feeds
Process Name of the security agent (e.g., FalconSensor.exe, MsMpEng.exe) and filter out network connections where the destination IP belongs to the vendor’s known CIDR blocks or the process is running under a system account (SYSTEM).Scenario: Scheduled Patching and Software Deployment via SCCM/Intune
Parent Process is identified as the deployment service (e.g., ccmexec.exe, IntuneManagementExtension.exe) and the event timestamp falls within the defined maintenance window (e.g., 02:00 – 04:00 UTC).Scenario: Legitimate Admin Remote Management Sessions