← Back to SOC feed Coverage →

ThreatFox: Quasar RAT IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsDnsEvents
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-16T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of Quasar RAT indicators, a remote access trojan frequently used by threat actors to establish persistent control and execute command-and-control operations on compromised endpoints. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify and isolate infected assets before the malware can be leveraged for lateral movement or data exfiltration.

IOC Summary

Malware Family: Quasar RAT Total IOCs: 23 IOC Types: ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
domainao88mi.combotnet_cc2026-09-16100%
domainkuy88.xyzbotnet_cc2026-09-16100%
domainwww.x88mi.combotnet_cc2026-09-16100%
domainga888vnd.combotnet_cc2026-09-16100%
domainmb66.uk.netbotnet_cc2026-09-16100%
domainccz.us.combotnet_cc2026-09-16100%
domainmb66-okvip.combotnet_cc2026-09-16100%
domainglossysquid.probotnet_cc2026-09-16100%
domainf168s.bestbotnet_cc2026-09-16100%
domainmb66s.clubbotnet_cc2026-09-16100%
domainmb66online.combotnet_cc2026-09-16100%
domainf8bet-k2.buzzbotnet_cc2026-09-16100%
domainok99.iobotnet_cc2026-09-16100%
domainok9.ripbotnet_cc2026-09-16100%
domain789bet.cafebotnet_cc2026-09-16100%
domainmb66.propertybotnet_cc2026-09-16100%
domainjun88.esqbotnet_cc2026-09-16100%
domainmb66.ooobotnet_cc2026-09-16100%
domainmb66.lifestylebotnet_cc2026-09-16100%
domainmb66.downloadbotnet_cc2026-09-16100%
domainluck8.webcambotnet_cc2026-09-16100%
domainok8386.videobotnet_cc2026-09-16100%
ip:port169[.]58[.]227[.]69:4345botnet_cc2026-09-16100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Quasar RAT
let malicious_ips = dynamic(["169.58.227.69"]);
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(["169.58.227.69"]);
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(["ao88mi.com", "kuy88.xyz", "www.x88mi.com", "ga888vnd.com", "mb66.uk.net", "ccz.us.com", "mb66-okvip.com", "glossysquid.pro", "f168s.best", "mb66s.club", "mb66online.com", "f8bet-k2.buzz", "ok99.io", "ok9.rip", "789bet.cafe", "mb66.property", "jun88.esq", "mb66.ooo", "mb66.lifestyle", "mb66.download", "luck8.webcam", "ok8386.video"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure 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/