This hunt targets adversary behavior involving the execution of known malicious web resources identified by URLhaus signature 54e64e, which often indicate initial phishing campaigns or drive-by download attacks. Proactively hunting for these specific URLs in Azure Sentinel is critical to rapidly identify compromised endpoints and block lateral movement before the threat escalates into a broader incident.
Threat: 54e64e Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_75b746fbff1c4fad.exe | online | malware_download | 2026-07-21 |
hxxp://91.92.242.236/files-129312398/files/file_b2017df304847a64.exe | online | malware_download | 2026-07-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 54e64e
let malicious_domains = dynamic(["91.92.242.236"]);
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(["91.92.242.236"]);
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 4 specific false positive scenarios for the URLhaus: 54e64e Malicious URLs detection rule, tailored for an enterprise environment:
Automated Software Update Scans by Endpoint Protection Agents
54e64e tag even though no actual user browsing activity occurred.10.20.30.x) or filter by process name where the executable is a known security agent (e.g., C:\Program Files\CrowdStrike\fsagent.exe or MsMpEng.exe).Scheduled Compliance and Vulnerability Scanning Jobs
192.168.50.10-15) and restrict the alert trigger to business hours only if the scans are manually triggered, or add a specific tag for “Scheduled Maintenance” in the SIEM workflow.IT Administration: Patch Management and Repository Sync