This detection identifies adversary activity involving access to ARM-tagged malicious URLs from the URLhaus threat intelligence feed, which often signal early-stage malware distribution or command-and-control communications. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before broader infection occurs.
Threat: arm Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.77.227.110/bins/parm5 | online | malware_download | 2026-07-27 |
hxxp://31.77.227.110/bins/parm | online | malware_download | 2026-07-27 |
hxxp://31.77.227.110/bins/parm7 | online | malware_download | 2026-07-27 |
hxxp://31.77.227.110/bins/parm6 | online | malware_download | 2026-07-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["31.77.227.110"]);
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.110"]);
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 filtering strategies suitable for an enterprise environment:
Scenario: Automated Security Scanner Traffic
Exclude if Source IP in [10.20.5.0/24] AND User-Agent contains "Tenable" OR "Qualys".Scenario: Scheduled Cloud Backup and Sync Jobs
Exclude if Destination Domain in [one.microsoft.com, drive.google.com, veeam.net] AND Event Time is between 02:00 and 06:00 (Local Time).