This detection identifies adversary activity involving the execution or access of ARM architecture-specific malicious URLs known to distribute mobile and IoT-targeted threats. A proactive hunt is essential in Azure Sentinel to rapidly isolate compromised endpoints before these specialized payloads propagate across hybrid cloud environments where traditional x86-focused defenses may lack visibility.
Threat: arm Total URLs: 12 Active URLs: 11
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://129.121.110.105/y1V | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.arm6 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_arm5 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/backup_0729_0324/real_arm | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_arm6 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/real_arm7 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.arm7 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/backup_0729_0324/real_arm64 | online | malware_download | 2026-07-29 |
hxxp://91.199.133.133:8080/bot.arm5 | online | malware_download | 2026-07-29 |
hxxp://129.121.110.105/hix | online | malware_download | 2026-07-29 |
hxxp://129.121.110.105/HjEG | online | malware_download | 2026-07-29 |
hxxp://45.90.163.37//arm6 | offline | malware_download | 2026-07-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: arm
let malicious_domains = dynamic(["129.121.110.105", "91.199.133.133"]);
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(["129.121.110.105", "91.199.133.133"]);
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 4 specific false positive scenarios for the URLhaus: arm Malicious URLs detection rule in an enterprise environment, along with targeted filtering strategies:
Scenario: Automated Security Scanner Traffic
User-Agent string contains specific identifiers like Tenable.Nessus, QualysGuard, or Rapid7-Scanner.Scenario: Scheduled Antivirus Definition Updates
AV-Update-Svc or DefenderCloudSync). Filter by process name if available, excluding processes like MpCmdRun.exe, FalconSensorService.exe, or SymantecEngine.exe.Scenario: Admin Manual Threat Research