← Back to SOC feed Coverage →

ThreatFox: Unknown Webinject IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
iocthreatfoxunknown_webinject
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-08-06T23:00:00Z · Confidence: high

Hunt Hypothesis

This detection identifies adversary behavior where malicious webinjects are deployed to intercept and manipulate browser traffic for credential harvesting or command-and-control communication. A SOC team should proactively hunt for these unknown indicators in Azure Sentinel because they often represent early-stage reconnaissance that can evade traditional signature-based defenses before full compromise occurs.

IOC Summary

Malware Family: Unknown Webinject Total IOCs: 3 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
domainapp.malcare.mepayload_delivery2026-08-06100%
urlhxxps://app.malcare.me/js/pub.min.jspayload_delivery2026-08-06100%
domaincss.xjsx.lolpayload_delivery2026-08-06100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown Webinject
let malicious_domains = dynamic(["app.malcare.me", "css.xjsx.lol"]);
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 - Unknown Webinject
let malicious_urls = dynamic(["https://app.malcare.me/js/pub.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

Here are 4 specific false positive scenarios for the ThreatFox: Unknown Webinject IOCs rule, tailored for a legitimate enterprise environment:

Original source: https://threatfox.abuse.ch/browse/malware/unknown_webinject/