This detection identifies adversary activity involving the execution of 32-bit malware payloads delivered through five specific malicious URLs flagged by URLhaus. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the threat escalates within the network.
Threat: 32-bit Total URLs: 5 Active URLs: 5
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://123.12.198.224:45753/bin.sh | online | malware_download | 2026-08-03 |
hxxp://42.234.204.67:49024/i | online | malware_download | 2026-08-03 |
hxxp://42.234.204.67:49024/bin.sh | online | malware_download | 2026-08-03 |
hxxp://125.160.188.158:58986/bin.sh | online | malware_download | 2026-08-03 |
hxxp://112.248.114.151:59466/bin.sh | online | malware_download | 2026-08-03 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["125.160.188.158", "112.248.114.151", "42.234.204.67", "123.12.198.224"]);
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(["125.160.188.158", "112.248.114.151", "42.234.204.67", "123.12.198.224"]);
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 Admin Tools Accessing Cloud Repositories
Process.Name IN ("ccmsetup.exe", "Orion.Agent.exe", "TeamViewer_Service.exe") AND Process.Architecture == x86.Automated Patch Management Scheduled Jobs
User.Account IN ("svc-patch", "WSUS-Service") AND Event.Time BETWEEN 02:00 AND 06:00.32-bit Browser Extensions and Telemetry