This detection identifies adversary activity involving the execution of 32-bit malware payloads delivered through a curated set of known malicious URLs from URLhaus. A SOC team should proactively hunt for this behavior in Azure Sentinel to uncover potential lateral movement or initial access vectors that may evade standard 64-bit focused defenses, ensuring comprehensive coverage against legacy architecture threats.
Threat: 32-bit Total URLs: 51 Active URLs: 46
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://98.252.87.232:55884/bin.sh | online | malware_download | 2026-07-24 |
hxxp://110.36.2.23:45384/i | online | malware_download | 2026-07-24 |
hxxp://42.239.11.141:53311/i | online | malware_download | 2026-07-24 |
hxxp://182.116.22.120:47264/i | online | malware_download | 2026-07-24 |
hxxp://112.237.236.9:43718/bin.sh | online | malware_download | 2026-07-24 |
hxxp://110.36.2.23:45384/bin.sh | online | malware_download | 2026-07-24 |
hxxp://39.74.35.191:45301/i | online | malware_download | 2026-07-24 |
hxxp://112.248.187.225:57944/i | online | malware_download | 2026-07-24 |
hxxp://110.36.65.9:53456/i | online | malware_download | 2026-07-24 |
hxxp://42.231.47.185:46513/i | online | malware_download | 2026-07-24 |
hxxp://105.224.82.249:42805/bin.sh | online | malware_download | 2026-07-24 |
hxxp://42.231.47.185:46513/bin.sh | online | malware_download | 2026-07-24 |
hxxp://182.114.193.246:52583/i | online | malware_download | 2026-07-24 |
hxxp://182.119.0.224:34128/i | online | malware_download | 2026-07-24 |
hxxp://42.224.97.81:43645/i | online | malware_download | 2026-07-24 |
hxxp://42.232.180.224:37072/i | online | malware_download | 2026-07-24 |
hxxp://105.186.187.17:52313/i | online | malware_download | 2026-07-24 |
hxxp://182.119.0.224:34128/bin.sh | online | malware_download | 2026-07-24 |
hxxp://110.36.28.230:48902/i | online | malware_download | 2026-07-24 |
hxxp://42.232.180.224:37072/bin.sh | online | malware_download | 2026-07-24 |
hxxp://171.83.59.154:46798/i | online | malware_download | 2026-07-24 |
hxxp://105.186.187.17:52313/bin.sh | online | malware_download | 2026-07-24 |
hxxp://171.83.59.154:46798/bin.sh | online | malware_download | 2026-07-24 |
hxxp://42.239.226.213:55619/i | online | malware_download | 2026-07-24 |
hxxp://110.36.28.230:48902/bin.sh | online | malware_download | 2026-07-24 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["105.186.187.17", "98.252.87.232", "171.83.59.154", "105.224.82.249", "112.255.63.96", "123.11.73.177", "42.239.11.141", "42.224.97.81", "182.119.0.224", "42.55.37.12", "182.114.193.246", "112.248.187.225", "42.239.226.213", "110.36.2.23", "110.36.65.9", "182.116.22.120", "112.237.236.9", "110.36.28.230", "42.231.47.185", "42.232.180.224", "39.74.35.191"]);
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(["105.186.187.17", "98.252.87.232", "171.83.59.154", "105.224.82.249", "112.255.63.96", "123.11.73.177", "42.239.11.141", "42.224.97.81", "182.119.0.224", "42.55.37.12", "182.114.193.246", "112.248.187.225", "42.239.226.213", "110.36.2.23", "110.36.65.9", "182.116.22.120", "112.237.236.9", "110.36.28.230", "42.231.47.185", "42.232.180.224", "39.74.35.191"]);
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: 32-bit Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Legacy Line-of-Business (LOB) Application Updates
Source Host (e.g., Inventory-App-Srv01) and whitelist the known benign destination domains (e.g., *.vendor-updates.com). Alternatively, filter by Process Name to exclude the specific service executable (e.g., LegacyInventory.exe).Administrative Scheduled Jobs for Patching
Task Scheduler) queries the vendor’s repository to download manifest files. These URLs often trigger alerts because they are accessed by many machines simultaneously, causing URLhaus to flag them as “suspicious” due to high volume from non-standard ports.Process Name matches the patch agent executable (e.g., WuaUla.exe or SolarPatchAgent32.exe) AND the User Account is a dedicated service account (e.g., DOMAIN\PatchSvc).Development Environment CI/CD Pipeline Artifacts