This hunt targets adversary behavior where endpoints access known malicious web resources identified by URLhaus under the specific threat signature a0f4ec11acdab29ab0b90e28b8d77c14, indicating potential command-and-control communication or initial phishing delivery. Proactively hunting for these URLs in Azure Sentinel is critical to rapidly identify and isolate compromised assets before they can exfiltrate data or establish persistent footholds within the network.
Threat: a0f4ec11acdab29ab0b90e28b8d77c14 Total URLs: 4 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://blue-paper-f69f.acrypters.workers.dev/FTM0-40PO-AO28-G98E/img_m9agri.png | online | malware_download | 2026-07-01 |
hxxp://107.173.143.45/sso.esic.gov.inESICSSOAppLiferaylogin.jspbmctx=7CAD769BFA3451BE21DE1F73E125D2C4FA94907F3FE40A1DCE0DB069C1A208E4&password=secure_string&contextTypeop.php | offline | malware_download | 2026-07-01 |
hxxps://sh.classera.com/enT3ac | offline | malware_download | 2026-07-01 |
hxxp://107.173.143.45/128/givemebesttimeforbetterplacescomingforme.hta?&%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B%D0%9B | offline | malware_download | 2026-07-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: a0f4ec11acdab29ab0b90e28b8d77c14
let malicious_domains = dynamic(["blue-paper-f69f.acrypters.workers.dev"]);
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(["blue-paper-f69f.acrypters.workers.dev"]);
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 5 specific false positive scenarios for the URLhaus: a0f4ec11acdab29ab0b90e28b8d77c14 Malicious URLs detection rule, tailored for an enterprise environment:
Endpoint Protection Policy Updates (CrowdStrike/Falcon)
Process Name (e.g., csagent.exe, MsMpEng.exe) and restrict the scope to specific Destination IP ranges belonging to the vendor’s update servers (e.g., *.crowdstrike.com, *.microsoft.com).Automated Software Deployment via SCCM/Intune
a0f4ec11... hash, the download activity generates a false positive during business hours.SCCM Site Server or Intune Management Extension service accounts (e.g., DOMAIN\svc-sccm) and filter by User Agent strings containing “Microsoft-SoftwareUpdate” or specific SCCM distribution point FQDNs.Third-Party SaaS Integration Webhooks