This detection identifies adversary activity involving specific malicious URLs flagged by URLhaus with the tag 54e64e, which often indicate active phishing campaigns or command-and-control infrastructure. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before broader network impact occurs.
Threat: 54e64e Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_8f2a9c058325ac38.exe | online | malware_download | 2026-08-14 |
hxxp://91.92.242.236/files-129312398/files/file_59d28a25d618df87.exe | offline | malware_download | 2026-08-14 |
// 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 Security Tool Health Checks
https://urlhaus-api.io/api/v1/url/54e64e might be part of a scheduled health check that mimics the structure of the malicious signature.10.20.30.0/24) or hostnames containing “security-scanner” where the destination URL contains /api/v1/ and the HTTP method is GET.Scenario: Scheduled Software Update Verification
54e64e) for versioning, triggering a match even though the content is benign.443, provided the request originates from the corporate DMZ subnet (192.168.50.0/24).Scenario: Admin-Driven Threat Intelligence Integration