This hunt detects adversary activity involving the Quasar Remote Access Trojan (RAT) by identifying specific Indicators of Compromise (IOCs) that signal potential command-and-control communications or malicious process execution within the environment. A proactive search is essential in Azure Sentinel to rapidly identify and isolate compromised endpoints before attackers can leverage this RAT for long-term persistence, credential theft, and lateral movement across the network.
Malware Family: Quasar RAT Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 5[.]83[.]150[.]71:4567 | botnet_cc | 2026-08-09 | 100% |
| ip:port | 145[.]63[.]135[.]73:4782 | botnet_cc | 2026-08-09 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Quasar RAT
let malicious_ips = dynamic(["5.83.150.71", "145.63.135.73"]);
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(["5.83.150.71", "145.63.135.73"]);
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: Endpoint Protection Engine Updates
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe (or equivalent for Defender) when connecting to known update server domains (e.g., *.crowdstrike.com, *.microsoft.com) during the defined maintenance window.Scenario: Scheduled Backup and Synchronization Jobs
veeamagent.exe and acronisbackupservice.exe when they initiate outbound connections to specific cloud storage CIDR blocks identified in the backup configuration, specifically excluding the alert if the connection duration exceeds 5 minutes (indicating a transfer rather than a beacon).Scenario: Legacy Remote Management Tools