This detection identifies adversary behavior where threat actors leverage newly identified ARM-tagged malicious URLs from URLhaus to deliver payloads or establish command-and-control channels within the network. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the malware executes its full attack sequence.
Threat: arm Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.56.209.153/00101010101001/morte.arm7 | online | malware_download | 2026-08-01 |
hxxp://31.56.209.153/00101010101001/morte.arm | online | malware_download | 2026-08-01 |
hxxp://31.56.209.153/00101010101001/morte.arm5 | online | malware_download | 2026-08-01 |
hxxp://31.56.209.153/00101010101001/morte.arm6 | online | malware_download | 2026-08-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["31.56.209.153"]);
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.56.209.153"]);
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 tailored filters and exclusions suitable for an enterprise environment:
Scenario: Automated Threat Intelligence Feed Synchronization
SIEM-Update-Server-01) and Process Name (siem_agent.exe or falcon-sensor.exe). Additionally, filter out traffic where the HTTP User-Agent string contains specific identifiers like CrowdStrike-Falcon or Microsoft Defender.Scenario: Scheduled Software Patching via WSUS/SCCM
WSUS_Sync_Job) running between 02:00 and 04:00 UTC. Alternatively, exclude URLs containing the domain segment go.microsoft.com or download.windowsupdate.com when initiated by the process wuauserv.exe.Scenario: Cloud Backup Agent Connectivity Checks