This hunt detects adversary behavior involving the consumption of newly identified malicious web resources flagged by URLhaus under the specific threat signature 54e64e. A SOC team should proactively search for these indicators within Azure Sentinel to rapidly isolate compromised endpoints and prevent potential data exfiltration or lateral movement before broader infection occurs.
Threat: 54e64e Total URLs: 4 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_71e9122fb7adb41f.exe | online | malware_download | 2026-08-01 |
hxxp://91.92.242.236/files-129312398/files/file_8b0de4fcc07257ed.exe | online | malware_download | 2026-08-01 |
hxxp://91.92.242.236/files-129312398/files/file_3f6d7b23812e3a8e.exe | online | malware_download | 2026-08-01 |
hxxp://91.92.242.236/files-129312398/files/file_4a2298dc2ab315c6.exe | offline | malware_download | 2026-08-01 |
// 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 specific false positive scenarios and corresponding filters for the URLhaus: 54e64e Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Vulnerability Scanning by Security Tools
54e64e signature, triggering a hit even though the traffic is part of a scheduled maintenance job rather than user-initiated browsing.10.20.50.x) or filter by process name matching nessus.exe, qualyspc.exe, or rapid7-agent.Scenario: Scheduled Endpoint Protection Cloud Updates
54e64e URL signature to validate local definitions, generating a false alert on the outbound connection.C:\Program Files\CrowdStrike\fs_qrte.exe or MsMpEng.exe) occurring during defined maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Third-Party Cloud Backup and Synchronization Services