← Back to SOC feed Coverage →

ThreatFox: NetSupportManager RAT IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
backdooriocthreatfoxwin-netsupportmanager_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-04-18T16:05:06Z · Confidence: high

Hunt Hypothesis

The detection identifies potential NetSupportManager RAT activity through known IOCs, indicating an adversary may be establishing remote control over victim systems. SOC teams should proactively hunt for this behavior in Azure Sentinel to detect and mitigate advanced persistent threats leveraging this RAT before significant data exfiltration or system compromise occurs.

IOC Summary

Malware Family: NetSupportManager RAT Total IOCs: 15 IOC Types: url, domain

TypeValueThreat TypeFirst SeenConfidence
domainalfacoockie.combotnet_cc2026-04-18100%
domainstoriealf.combotnet_cc2026-04-18100%
domainnoviqerax.combotnet_cc2026-04-18100%
domainklyvareno.combotnet_cc2026-04-18100%
domainpraxivono.combotnet_cc2026-04-18100%
domaindravonixu.combotnet_cc2026-04-18100%
domainostlomtophamchese.combotnet_cc2026-04-18100%
domainlomtophamchese.combotnet_cc2026-04-18100%
domainyellowbricksj.combotnet_cc2026-04-18100%
domainyellowbricksj.netbotnet_cc2026-04-18100%
domainkislosflfkcjdj.combotnet_cc2026-04-18100%
domainlosuinisots.combotnet_cc2026-04-18100%
urlhxxps://xrplnode.dev/xrpl.phppayload_delivery2026-04-18100%
urlhxxps://xrplnode.dev/installpayload_delivery2026-04-18100%
domainxrplnode.devpayload_delivery2026-04-18100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - NetSupportManager RAT
let malicious_domains = dynamic(["alfacoockie.com", "storiealf.com", "noviqerax.com", "klyvareno.com", "praxivono.com", "dravonixu.com", "ostlomtophamchese.com", "lomtophamchese.com", "yellowbricksj.com", "yellowbricksj.net", "kislosflfkcjdj.com", "losuinisots.com", "xrplnode.dev"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - NetSupportManager RAT
let malicious_urls = dynamic(["https://xrplnode.dev/xrpl.php", "https://xrplnode.dev/install"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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