← Back to SOC feed Coverage →

ThreatFox: FAKEUPDATES IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocjs-fakeupdatesthreatfox
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-06-16T11:00:00Z · Confidence: high

Hunt Hypothesis

The ThreatFox: FAKEUPDATES IOCs detection rule identifies potential adversary activity linked to malicious update packages, which could be used to deliver malware or compromise systems. SOC teams should proactively hunt for these IOCs in Azure Sentinel to detect and mitigate early-stage attacks that exploit trusted update mechanisms.

IOC Summary

Malware Family: FAKEUPDATES Total IOCs: 2 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
domainspeed-optimizer.compayload_delivery2026-06-16100%
urlhxxps://speed-optimizer.com/scripts/core.min.jspayload_delivery2026-06-16100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - FAKEUPDATES
let malicious_domains = dynamic(["speed-optimizer.com"]);
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 - FAKEUPDATES
let malicious_urls = dynamic(["https://speed-optimizer.com/scripts/core.min.js"]);
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/js.fakeupdates/