This hunt detects adversary behavior where endpoints access known malicious URLs specifically targeting 32-bit architectures, potentially indicating an attempt to exploit legacy systems or deliver tailored payloads. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage compromises on older infrastructure that may lack modern security controls and are often overlooked by standard detection rules.
Threat: 32-bit Total URLs: 4 Active URLs: 4
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://223.105.50.190:53132/bin.sh | online | malware_download | 2026-08-08 |
hxxp://45.171.177.193:32861/i | online | malware_download | 2026-08-08 |
hxxp://123.5.83.209:57935/i | online | malware_download | 2026-08-08 |
hxxp://42.55.138.2:60455/bin.sh | online | malware_download | 2026-08-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["45.171.177.193", "123.5.83.209", "223.105.50.190", "42.55.138.2"]);
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(["45.171.177.193", "123.5.83.209", "223.105.50.190", "42.55.138.2"]);
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: 32-bit Malicious URLs detection rule, tailored for a legitimate enterprise environment:
Legacy Point-of-Sale (POS) Terminal Updates
*.retail-pos-updates.internal) and restrict the detection to exclude traffic originating from the “Retail-Floor” network segment where these legacy devices reside.32-bit Microsoft Office 365 Click-to-Run Telemetry
excel.exe, winword.exe). When these applications perform background telemetry or feature usage reporting to Microsoft’s cloud services, they generate outbound connections that URLhaus may flag as potentially malicious due to the high volume of dynamic URLs generated by the Click-to-Run installation engine.Process Name matches EXCEL.EXE, WINWORD.EXE, or OUTLOOK.EXE AND the Architecture is identified as 32-bit, provided the destination domain belongs to trusted Microsoft domains (e.g., *.office.com, *.microsoftonline.com).Scheduled Antivirus Definition Updates via Legacy Agents