← Back to SOC feed Coverage →

ThreatFox: Quasar RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEvents
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-21T23:00:01Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential Quasar RAT infections by correlating known indicators of compromise with asset telemetry, targeting a remote access tool frequently used for persistent command-and-control. Proactively hunting for these IOCs is critical because Quasar RAT enables adversaries to execute arbitrary commands and exfiltrate data, often serving as a foothold for deeper network compromise if left undetected.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
domainupdate.ddns.netbotnet_cc2026-09-2175%
ip:port41[.]41[.]128[.]115:5005botnet_cc2026-09-21100%
md5_hashcba5d54230e862787080f0b881f38b2fpayload2026-09-2195%
sha256_hashc16923aa6b647fe1b8e8b2879fc251e48d1f09b34351056d7afe83b18efcdbf6payload2026-09-2195%
sha1_hash502d908a2040f5b23cbb087584247095c9cbb4a3payload2026-09-2195%

KQL: Ip Hunt

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

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Quasar RAT
let malicious_domains = dynamic(["update.ddns.net"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Quasar RAT
let malicious_hashes = dynamic(["cba5d54230e862787080f0b881f38b2f", "c16923aa6b647fe1b8e8b2879fc251e48d1f09b34351056d7afe83b18efcdbf6", "502d908a2040f5b23cbb087584247095c9cbb4a3"]);
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
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

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