This hunt targets adversaries leveraging known 32-bit malicious web endpoints to deliver payloads or exfiltrate data from legacy systems within the Azure environment. Proactively hunting for these specific URLhaus indicators in Azure Sentinel is critical because 32-bit applications often lack modern security controls, making them high-value entry points for sophisticated threats that standard network rules might overlook.
Threat: 32-bit Total URLs: 19 Active URLs: 18
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://27.216.175.89:44418/bin.sh | online | malware_download | 2026-07-14 |
hxxp://196.189.104.106:60246/i | online | malware_download | 2026-07-14 |
hxxp://112.114.32.50:33615/i | online | malware_download | 2026-07-14 |
hxxp://112.114.32.50:33615/bin.sh | online | malware_download | 2026-07-14 |
hxxp://182.119.219.240:33066/i | online | malware_download | 2026-07-14 |
hxxp://42.229.169.70:36754/bin.sh | online | malware_download | 2026-07-14 |
hxxp://120.84.213.218:46712/i | online | malware_download | 2026-07-14 |
hxxp://219.156.102.170:40193/i | online | malware_download | 2026-07-14 |
hxxp://182.119.219.240:33066/bin.sh | online | malware_download | 2026-07-14 |
hxxp://120.84.213.218:46712/bin.sh | offline | malware_download | 2026-07-14 |
hxxp://222.191.203.156:35202/i | online | malware_download | 2026-07-14 |
hxxp://42.176.40.174:33008/i | online | malware_download | 2026-07-14 |
hxxp://219.156.102.170:40193/bin.sh | online | malware_download | 2026-07-14 |
hxxp://42.228.105.109:47442/i | online | malware_download | 2026-07-14 |
hxxp://110.36.1.200:35611/i | online | malware_download | 2026-07-14 |
hxxp://42.176.40.174:33008/bin.sh | online | malware_download | 2026-07-14 |
hxxp://42.228.105.109:47442/bin.sh | online | malware_download | 2026-07-14 |
hxxp://182.113.31.247:56618/i | online | malware_download | 2026-07-14 |
hxxp://110.36.1.200:35611/bin.sh | online | malware_download | 2026-07-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["42.176.40.174", "120.84.213.218", "42.228.105.109", "110.36.1.200", "42.229.169.70", "182.119.219.240", "196.189.104.106", "112.114.32.50", "219.156.102.170", "222.191.203.156", "27.216.175.89", "182.113.31.247"]);
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(["42.176.40.174", "120.84.213.218", "42.228.105.109", "110.36.1.200", "42.229.169.70", "182.119.219.240", "196.189.104.106", "112.114.32.50", "219.156.102.170", "222.191.203.156", "27.216.175.89", "182.113.31.247"]);
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 specific false positive scenarios for the URLhaus: 32-bit Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Legacy Application Patching via Microsoft Update Catalog
WindowsUpdate service on servers running legacy 32-bit applications (e.g., older versions of SAP GUI or specialized ERP clients) automatically queries the Microsoft Update Catalog. These requests often hit specific CDN endpoints that URLhaus has flagged due to shared IP reputation with known malware, even though the traffic is strictly for patching legitimate software.WindowsUpdate service (Process Name: usoclient.exe) or filter by destination domain containing .update.microsoft.com and .download.windowsupdate.com.Scheduled Antivirus Definition Synchronization
C:\Program Files (x86)\CrowdStrike\*\csagent.exe or Symantec\Defender\*) accessing known signature repository domains like *.crowdstrike.com or *.symantec.com.Internal Reporting Tool Data Extraction