This hunt targets adversary behavior where endpoints access newly identified malicious web resources flagged by URLhaus with a “black3” severity tag, indicating active threats often associated with phishing or drive-by downloads. Proactively hunting for these specific URLs in Azure Sentinel is critical to rapidly isolate compromised assets and block lateral movement before the broader threat landscape updates its signature databases.
Threat: black3 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://195.24.237.240/.x/black3 | offline | malware_download | 2026-07-19 |
hxxp://digital.digitaldatainsights.org/.x/black3 | offline | malware_download | 2026-07-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: black3
let malicious_domains = dynamic(["digital.digitaldatainsights.org", "195.24.237.240"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["digital.digitaldatainsights.org", "195.24.237.240"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the URLhaus: black3 Malicious URLs detection rule in an enterprise environment, including suggested filters and exclusions:
Automated Software Update Agents (e.g., SCCM or Intune)
black3 even though the specific download path is safe and the traffic originates from a known management server.10.x.x.x/24) accessing destination domains ending in .update.microsoft.com or specific vendor CDNs, provided the user agent string contains keywords like “SCCM” or “Intune”.Scheduled Compliance and Backup Scans (e.g., Veeam or Symantec)
black3 tag may trigger during routine daily health checks initiated by the backup service account rather than a user interaction.**IT Administration via Remote Management Tools (e.g