← Back to SOC feed Coverage →

ThreatFox: Quasar RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEvents
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-06-28T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior characterized by the deployment of Quasar Remote Access Trojan (RAT) indicators to establish persistent command-and-control channels and exfiltrate sensitive data. Proactively hunting for these specific IOCs within Azure Sentinel is critical to detect early-stage compromise before the malware leverages its full capabilities for lateral movement and credential theft.

IOC Summary

Malware Family: Quasar RAT Total IOCs: 5 IOC Types: sha256_hash, ip:port, md5_hash, sha1_hash

TypeValueThreat TypeFirst SeenConfidence
ip:port194[.]59[.]31[.]123:4444botnet_cc2026-06-2850%
sha1_hash8c00b490332ca6af591294e1b2ffd01e708c612fpayload2026-06-2795%
md5_hash2549dc1f259917a6179f726de0ed45e7payload2026-06-2795%
sha256_hashfeea6bd8a190f0820c19df24b870a205d5799a9c75ace8044542496650a91ef0payload2026-06-2795%
ip:port209[.]25[.]141[.]24:1425botnet_cc2026-06-27100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Quasar RAT
let malicious_ips = dynamic(["194.59.31.123", "209.25.141.24"]);
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(["194.59.31.123", "209.25.141.24"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Quasar RAT
let malicious_hashes = dynamic(["8c00b490332ca6af591294e1b2ffd01e708c612f", "2549dc1f259917a6179f726de0ed45e7", "feea6bd8a190f0820c19df24b870a205d5799a9c75ace8044542496650a91ef0"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the ThreatFox: Quasar RAT IOCs detection rule, tailored for an enterprise environment:

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