This detection identifies adversary activity involving known malicious web resources targeting 32-bit systems, which often indicates initial access or command-and-control communication via compromised browsers. A SOC team should proactively hunt for these URLs in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before the malware establishes persistence on legacy infrastructure.
Threat: 32-bit Total URLs: 43 Active URLs: 39
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://27.37.100.220:38525/i | online | malware_download | 2026-07-25 |
hxxp://175.146.225.46:48972/bin.sh | online | malware_download | 2026-07-25 |
hxxp://27.215.208.135:40785/bin.sh | online | malware_download | 2026-07-25 |
hxxp://178.150.97.200:32971/i | online | malware_download | 2026-07-25 |
hxxp://61.52.186.184:44221/i | online | malware_download | 2026-07-25 |
hxxp://27.37.100.220:38525/bin.sh | offline | malware_download | 2026-07-25 |
hxxp://14.177.88.148:46180/i | online | malware_download | 2026-07-25 |
hxxp://124.131.145.114:44654/i | online | malware_download | 2026-07-25 |
hxxp://178.150.97.200:32971/bin.sh | online | malware_download | 2026-07-25 |
hxxp://105.187.42.210:52419/i | online | malware_download | 2026-07-25 |
hxxp://110.85.99.205:38787/i | online | malware_download | 2026-07-25 |
hxxp://115.57.254.177:40779/i | online | malware_download | 2026-07-25 |
hxxp://115.57.254.177:40779/bin.sh | online | malware_download | 2026-07-25 |
hxxp://106.41.137.15:48343/i | online | malware_download | 2026-07-25 |
hxxp://46.236.65.43:41753/i | online | malware_download | 2026-07-25 |
hxxp://119.183.25.240:40130/bin.sh | online | malware_download | 2026-07-25 |
hxxp://115.55.239.136:53259/i | online | malware_download | 2026-07-25 |
hxxp://221.14.39.115:54130/i | online | malware_download | 2026-07-25 |
hxxp://115.56.171.219:49349/bin.sh | online | malware_download | 2026-07-25 |
hxxp://221.14.39.115:54130/bin.sh | online | malware_download | 2026-07-25 |
hxxp://125.47.239.251:37472/bin.sh | online | malware_download | 2026-07-25 |
hxxp://125.40.1.120:40654/bin.sh | offline | malware_download | 2026-07-25 |
hxxp://115.49.203.4:34910/i | online | malware_download | 2026-07-25 |
hxxp://123.4.235.143:54118/i | online | malware_download | 2026-07-25 |
hxxp://182.127.167.83:54570/i | online | malware_download | 2026-07-25 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["178.150.97.200", "119.183.25.240", "123.4.235.143", "27.204.193.52", "46.236.65.43", "182.127.167.83", "27.37.100.220", "115.49.203.4", "61.52.186.184", "27.215.208.135", "221.14.39.115", "125.47.239.251", "110.85.99.205", "196.190.105.170", "115.55.239.136", "115.57.254.177", "125.41.77.70", "115.56.171.219", "124.131.145.114", "106.41.137.15", "115.49.90.44", "14.177.88.148", "105.187.42.210", "175.146.225.46", "115.50.26.7"]);
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(["178.150.97.200", "119.183.25.240", "123.4.235.143", "27.204.193.52", "46.236.65.43", "182.127.167.83", "27.37.100.220", "115.49.203.4", "61.52.186.184", "27.215.208.135", "221.14.39.115", "125.47.239.251", "110.85.99.205", "196.190.105.170", "115.55.239.136", "115.57.254.177", "125.41.77.70", "115.56.171.219", "124.131.145.114", "106.41.137.15", "115.49.90.44", "14.177.88.148", "105.187.42.210", "175.146.225.46", "115.50.26.7"]);
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 Application Traffic via 32-bit Browsers
x86 (32-bit), which the rule flags as potentially suspicious for modern web traffic.User-Agent field to exclude requests containing specific legacy identifiers, such as MSIE 10.x, Trident/7.0, or custom headers like X-App-Version: Legacy-SAP-GUI.Automated Reporting Jobs via PowerShell
svc-reporting-01) or filter by the Process Name field to exclude powershell.exe when the source IP belongs to the dedicated reporting subnet (e.g., 10.20.45.0/24).Patch Management and Software Deployment