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.
Malware Family: Unknown Webinject Total IOCs: 3 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | app.malcare.me | payload_delivery | 2026-08-06 | 100% |
| url | hxxps://app.malcare.me/js/pub.min.js | payload_delivery | 2026-08-06 | 100% |
| domain | css.xjsx.lol | payload_delivery | 2026-08-06 | 100% |
// 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
// 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
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: Unknown Webinject IOCs rule, tailored for a legitimate enterprise environment:
Scenario: Automated Browser Extension Updates via Group Policy
User-Agent contains “Chrome-Enterprise” AND the source IP belongs to the internal management subnet (e.g., 10.20.50.x) during the maintenance window (02:00–04:00 UTC).Scenario: CI/CD Pipeline Artifact Deployment
192.168.10.5) and destination ports associated with the artifact repository (e.g., 443 or 8080) when the HTTP method is POST or PUT.Scenario: Legacy Application Patching via SCCM