This rule identifies potential 32-bit malicious URLs tracked by URLhaus, indicating that an endpoint may be interacting with known malicious web resources to facilitate payload delivery or command-and-control communications. Proactively hunting for these indicators in Azure Sentinel allows the SOC to detect early-stage web-based threats and isolate affected assets before they progress to more complex post-exploitation activities.
Threat: 32-bit Total URLs: 14 Active URLs: 11
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://196.190.10.252:40024/i | online | malware_download | 2026-09-23 |
hxxp://196.190.10.252:40024/bin.sh | online | malware_download | 2026-09-23 |
hxxp://119.179.130.42:34793/bin.sh | offline | malware_download | 2026-09-23 |
hxxp://112.198.194.175:34769/i | online | malware_download | 2026-09-23 |
hxxp://196.191.233.24:60929/bin.sh | online | malware_download | 2026-09-23 |
hxxp://42.228.101.127:50284/i | online | malware_download | 2026-09-23 |
hxxp://222.141.37.15:36990/i | online | malware_download | 2026-09-23 |
hxxp://222.138.118.172:57431/i | online | malware_download | 2026-09-23 |
hxxp://175.165.120.100:41066/i | offline | malware_download | 2026-09-23 |
hxxp://42.235.17.46:44550/bin.sh | online | malware_download | 2026-09-23 |
hxxp://125.47.117.63:43191/i | online | malware_download | 2026-09-23 |
hxxp://103.172.186.194:52263/bin.sh | offline | malware_download | 2026-09-23 |
hxxp://42.235.17.46:44550/i | online | malware_download | 2026-09-23 |
hxxp://46.16.150.139:44188/i | online | malware_download | 2026-09-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["222.138.118.172", "46.16.150.139", "112.198.194.175", "125.47.117.63", "42.235.17.46", "196.191.233.24", "42.228.101.127", "196.190.10.252", "222.141.37.15"]);
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(["222.138.118.172", "46.16.150.139", "112.198.194.175", "125.47.117.63", "42.235.17.46", "196.191.233.24", "42.228.101.127", "196.190.10.252", "222.141.37.15"]);
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 |
Legacy Application Updates via 32-bit Client
*.legacy-cad-vendor.com) or exclude processes with the name update32.exe when the destination URL matches the known vendor pattern.Scheduled Log Collection by 32-bit Agent
splunkforwarder32.exe or arcagent32.exe) is scheduled to upload compressed logs to a specific internal or external endpoint. If the endpoint URL is flagged on URLhaus due to a recent, low-severity report or a shared hosting IP, the rule fires.32.exe or x86.exe if the destination URL is within the corporate trust zone (e.g., *.internal-corp.net) or if the process is running under a service account (e.g., svc_log_collector).Browser Helper Objects (BHOs) or 32-bit Plugins