This hunt targets adversaries leveraging known 32-bit malicious web resources to establish command and control or deliver initial payloads within the Azure environment. Proactively hunting these specific URL patterns is critical because their high severity indicates a significant risk of active exploitation that may bypass standard static defenses, requiring immediate investigation to prevent lateral movement.
Threat: 32-bit Total URLs: 13 Active URLs: 13
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://171.114.231.43:48473/bin.sh | online | malware_download | 2026-07-15 |
hxxp://115.53.223.236:33211/i | online | malware_download | 2026-07-15 |
hxxp://115.53.223.236:33211/bin.sh | online | malware_download | 2026-07-15 |
hxxp://46.236.65.23:60207/i | online | malware_download | 2026-07-15 |
hxxp://182.46.196.157:40165/i | online | malware_download | 2026-07-15 |
hxxp://218.91.141.176:45041/bin.sh | online | malware_download | 2026-07-15 |
hxxp://110.138.7.189:53796/i | online | malware_download | 2026-07-15 |
hxxp://123.4.202.133:35648/bin.sh | online | malware_download | 2026-07-15 |
hxxp://216.126.86.69:43335/i | online | malware_download | 2026-07-15 |
hxxp://216.126.86.69:43335/bin.sh | online | malware_download | 2026-07-15 |
hxxp://182.127.114.41:54581/i | online | malware_download | 2026-07-15 |
hxxp://42.230.43.246:49767/bin.sh | online | malware_download | 2026-07-15 |
hxxp://39.71.17.161:54972/i | online | malware_download | 2026-07-15 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["110.138.7.189", "115.53.223.236", "216.126.86.69", "182.127.114.41", "42.230.43.246", "123.4.202.133", "182.46.196.157", "218.91.141.176", "171.114.231.43", "39.71.17.161", "46.236.65.23"]);
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(["110.138.7.189", "115.53.223.236", "216.126.86.69", "182.127.114.41", "42.230.43.246", "123.4.202.133", "182.46.196.157", "218.91.141.176", "171.114.231.43", "39.71.17.161", "46.236.65.23"]);
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 four specific false positive scenarios for the URLhaus: 32-bit Malicious URLs detection rule in an enterprise environment, along with recommended filters or exclusions:
Legacy Application Patching via Windows Update Standalone Installer
WindowsUpdateStandalone agent (or similar legacy patch management tools like older versions of SCCM) frequently downloads update manifests and binary patches from Microsoft’s content delivery network. These URLs often contain dynamic query parameters or specific hash strings that URLhaus may flag as “suspicious” due to high volume or non-standard path structures, even though the traffic is legitimate administrative maintenance.WindowsUpdateStandalone and the destination domain belongs to update.microsoft.com, download.windowsupdate.com, or go.microsoft.com.Automated 32-bit Backup Agent Connectivity Checks
VeeamAgent.exe, cvdagent.exe, or AcronisService.exe connecting to known vendor domains (e.g., veeam.com, commvault.com) where the connection duration is less than 5 seconds and no data payload exceeds 10KB.Scheduled Software License Validation for 32-bit Development Tools