This detection identifies adversary activity involving access to ARM-tagged malicious URLs identified by the URLhaus threat intelligence feed, which often indicate early-stage malware distribution or command-and-control communications. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before these high-severity threats can execute payload delivery or exfiltrate sensitive data.
Threat: arm Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.77.227.128/bins/parm5 | online | malware_download | 2026-08-05 |
hxxp://31.77.227.128/bins/parm | online | malware_download | 2026-08-05 |
hxxp://31.77.227.128/bins/parm6 | online | malware_download | 2026-08-05 |
hxxp://31.77.227.128/bins/parm7 | online | malware_download | 2026-08-05 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["31.77.227.128"]);
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(["31.77.227.128"]);
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: arm Malicious URLs detection rule, including targeted filters and exclusions suitable for an enterprise environment:
Antivirus Definition Updates via Scheduled Tasks
C:\Program Files\CrowdStrike\csfalcon.exe or MsMpEng.exe) combined with a specific Scheduled Task ID. Alternatively, whitelist the known update server domains (e.g., *.crowdstrike.com, *.microsoft.com) in the URLhaus feed configuration.Cloud Backup and Synchronization Services
svc-backup-01) that run during off-hours.Software Deployment and Patch Management Tools