This detection identifies adversary behavior involving the consumption of newly identified malicious web resources flagged by URLhaus under signature 54e64e, which often indicate early-stage phishing or command-and-control activities. A proactive hunt is essential in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before these emerging threats are widely adopted by automated defense systems.
Threat: 54e64e Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://91.92.242.236/files-129312398/files/file_3a6c8cecc55c6ccf.exe | online | malware_download | 2026-08-05 |
hxxp://91.92.242.236/files-129312398/files/file_5ba49755e4182c02.exe | online | malware_download | 2026-08-05 |
// 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 3-5 specific false positive scenarios for the URLhaus: 54e64e Malicious URLs detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment:
Scenario: Automated Security Tool Updates and Threat Intelligence Feeds
*.crowdstrike.com, *.sentinelone.net) and processes like falcon.sys or SentinelOneAgent.exe. Additionally, filter out HTTP GET requests where the User-Agent string contains keywords like “CrowdStrike,” “Tenable,” or “URLhaus-Client.”Scenario: Scheduled Microsoft Office 365 Compliance and Reporting Jobs
54e64e signature pattern. The traffic is administrative in nature and not user-initiated browsing.powershell.exe or msedge.exe (running as a service account) during off-