← 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-09-06T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential Quasar RAT infections by correlating network traffic or host activity against known IOCs, detecting the remote access tool often used for initial access and lateral movement. Proactively hunting for these indicators in Azure Sentinel is critical to uncover dormant or stealthy compromises that may have bypassed traditional perimeter defenses, enabling the SOC to isolate affected assets before the adversary establishes a persistent foothold.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port38[.]54[.]94[.]117:4783botnet_cc2026-09-0675%
ip:port45[.]225[.]135[.]87:80botnet_cc2026-09-0675%
ip:port103[.]106[.]67[.]96:1020botnet_cc2026-09-0675%
ip:port177[.]9[.]99[.]79:1005botnet_cc2026-09-0675%
ip:port103[.]89[.]13[.]21:4782botnet_cc2026-09-0675%
ip:port31[.]57[.]38[.]167:4782botnet_cc2026-09-0675%
ip:port169[.]58[.]131[.]93:4783botnet_cc2026-09-0675%
sha256_hash1f5214dad42cbad505f559ab2bc332139d6a5d6b9e080d35ec5576e7141dddd1payload2026-09-0695%
sha1_hashaf94a7e03eb3d3def52a88de34085d747cdfc2b6payload2026-09-0695%
md5_hash54c426085dec3ece1925a0eecc5e6433payload2026-09-0695%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Quasar RAT
let malicious_ips = dynamic(["45.225.135.87", "103.106.67.96", "169.58.131.93", "177.9.99.79", "31.57.38.167", "103.89.13.21", "38.54.94.117"]);
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(["45.225.135.87", "103.106.67.96", "169.58.131.93", "177.9.99.79", "31.57.38.167", "103.89.13.21", "38.54.94.117"]);
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(["1f5214dad42cbad505f559ab2bc332139d6a5d6b9e080d35ec5576e7141dddd1", "af94a7e03eb3d3def52a88de34085d747cdfc2b6", "54c426085dec3ece1925a0eecc5e6433"]);
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

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