This hypothesis posits that adversaries are leveraging ARM-tagged malicious URLs to deliver targeted payloads or phishing campaigns designed specifically for mobile and embedded environments within the organization’s network perimeter. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of ARM-specific threats can prevent lateral movement and data exfiltration before standard signature-based defenses identify the evolving campaign.
Threat: arm Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://217.60.195.187/bins/parm5 | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/parm | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/parm7 | online | malware_download | 2026-07-17 |
hxxp://217.60.195.187/bins/parm6 | online | malware_download | 2026-07-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["217.60.195.187"]);
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(["217.60.195.187"]);
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 four specific false positive scenarios for the URLhaus: arm Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Antivirus Endpoint Definition Updates
*.crowdstrike.com, *.sentinelone.net) where the user agent contains “UpdateService” or similar identifiers.Scheduled Software Patching via WSUS/SCCM
svc-sccm-patch) or filter URLs containing paths like /update.microsoft.com and /download.windowsupdate.com when the source IP belongs to the internal patch management subnet.Cloud Backup Agent Snapshots