This detection identifies adversary activity where endpoints access known malicious 32-bit URLs, signaling potential initial compromise or lateral movement via compromised web traffic. Proactively hunting for these specific URL patterns in Azure Sentinel is critical to rapidly isolate affected systems and prevent the execution of targeted payloads before they escalate into broader incidents.
Threat: 32-bit Total URLs: 9 Active URLs: 9
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://42.239.149.237:60566/i | online | malware_download | 2026-08-18 |
hxxp://105.184.213.168:46781/i | online | malware_download | 2026-08-18 |
hxxp://111.163.247.38:57877/i | online | malware_download | 2026-08-18 |
hxxp://111.163.247.38:57877/bin.sh | online | malware_download | 2026-08-18 |
hxxp://210.208.111.74:34826/bin.sh | online | malware_download | 2026-08-18 |
hxxp://38.46.30.224:41739/i | online | malware_download | 2026-08-18 |
hxxp://42.239.149.237:60566/bin.sh | online | malware_download | 2026-08-18 |
hxxp://219.157.16.206:50901/i | online | malware_download | 2026-08-18 |
hxxp://105.184.213.168:46781/bin.sh | online | malware_download | 2026-08-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["219.157.16.206", "210.208.111.74", "105.184.213.168", "42.239.149.237", "38.46.30.224", "111.163.247.38"]);
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(["219.157.16.206", "210.208.111.74", "105.184.213.168", "42.239.149.237", "38.46.30.224", "111.163.247.38"]);
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, including targeted filters and exclusions suitable for an enterprise environment:
Legacy Point-of-Sale (POS) System Updates
Source Host IP range of the POS network segment and the specific destination domain (e.g., *.ncr.com, *.micros.com). Additionally, exclude traffic where the User-Agent string contains “Windows NT 6.1” or “MSIE 10.0”.32-bit Office Add-in Telemetry
office.com or go.microsoft.com domains for add-in telemetry, license validation, and template downloads. The detection logic may flag these specific API endpoints as “malicious 32-bit” because they serve architecture-specific payloads that mimic known malicious patterns./api/v1/telemetry or /update when the source process is EXCEL.EXE, WINWORD.EXE, or OUTLOOK.EXE. Implement a filter to