← Back to SOC feed Coverage →

ThreatFox: PureRAT IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
backdooriocthreatfoxwin-pure_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-05-20T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: PureRAT IOCs rule detects potential remote access trojan activity associated with data exfiltration and command execution by adversaries leveraging known indicators of compromise. SOC teams should proactively hunt for this behavior in Azure Sentinel to identify and mitigate advanced persistent threats that could compromise sensitive data and system integrity.

IOC Summary

Malware Family: PureRAT Total IOCs: 9 IOC Types: url, domain

TypeValueThreat TypeFirst SeenConfidence
domaindev-tokyotechie.compayload_delivery2026-05-20100%
domainreadadobe-document.clickpayload_delivery2026-05-20100%
domaindocuments-abacus.clickpayload_delivery2026-05-20100%
urlhxxps://dev-tokyotechie.com/de-ch/payload_delivery2026-05-20100%
urlhxxps://readadobe-document.click/support/payload_delivery2026-05-20100%
urlhxxps://documents-abacus.click/up/payload_delivery2026-05-20100%
urlhxxps://dev-tokyotechie.com/notification/payload_delivery2026-05-20100%
urlhxxps://dev-tokyotechie.com/de/payload_delivery2026-05-20100%
urlhxxps://dev-tokyotechie.com/ch/payload_delivery2026-05-20100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - PureRAT
let malicious_domains = dynamic(["dev-tokyotechie.com", "readadobe-document.click", "documents-abacus.click"]);
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 - PureRAT
let malicious_urls = dynamic(["https://dev-tokyotechie.com/de-ch/", "https://readadobe-document.click/support/", "https://documents-abacus.click/up/", "https://dev-tokyotechie.com/notification/", "https://dev-tokyotechie.com/de/", "https://dev-tokyotechie.com/ch/"]);
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.pure_rat/