← Back to SOC feed Coverage →

ThreatFox: Quasar RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
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-01T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity involving the ten specific indicators of compromise (IOCs) associated with the Quasar Remote Access Trojan (RAT), which is frequently used for credential theft and lateral movement. A SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections before attackers can establish persistent access or exfiltrate sensitive data from the environment.

IOC Summary

Malware Family: Quasar RAT Total IOCs: 10 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port89[.]45[.]45[.]149:4785botnet_cc2026-09-0150%
ip:port159[.]223[.]5[.]148:4782botnet_cc2026-09-0150%
ip:port91[.]92[.]40[.]195:4782botnet_cc2026-09-0150%
ip:port45[.]113[.]1[.]190:4782botnet_cc2026-09-0150%
ip:port187[.]209[.]68[.]66:4782botnet_cc2026-09-0150%
ip:port86[.]250[.]101[.]142:4782botnet_cc2026-09-0150%
ip:port209[.]90[.]233[.]39:4782botnet_cc2026-09-0150%
ip:port105[.]108[.]202[.]236:288botnet_cc2026-09-0150%
ip:port107[.]175[.]0[.]152:15000botnet_cc2026-09-0150%
ip:port177[.]2[.]16[.]126:14782botnet_cc2026-09-0150%

KQL: Ip Hunt

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

Required Data Sources

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

References

False Positive Guidance

Here are specific false positive scenarios and corresponding filters for the ThreatFox: Quasar RAT IOCs detection rule:

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