This detection identifies adversary behavior where threat actors leverage newly identified ARM-tagged malicious URLs from the URLhaus repository to deliver payloads or facilitate command and control communications. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the malicious URLs are widely adopted by automated defense systems.
Threat: arm Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://46.151.182.200/bot.arm7 | online | malware_download | 2026-08-11 |
hxxp://46.151.182.200/bot.arm | online | malware_download | 2026-08-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["46.151.182.200"]);
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(["46.151.182.200"]);
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, along with targeted filters and exclusions suitable for an enterprise environment:
Antivirus Definition Updates via Scheduled Tasks
arm tag often flags these update servers because they host dynamic content that mimics malware distribution patterns.*.crowdstrike.com, *.sentinelone.net, *.update.microsoft.com) where the HTTP User-Agent string matches known AV updater signatures and the connection originates from a dedicated “Update” service account.Cloud Storage Synchronization Services
*.sharepoint.com, *.onedrive.live.com, and *.box.com where the HTTP method is GET or POST and the destination port is standard (443), specifically filtering out requests initiated by the OneDrive Sync client process (FileSync.exe).Software Deployment via Configuration Management Tools