This hunt targets adversary behavior where attackers leverage known 32-bit malicious URLs to deliver payloads or facilitate command-and-control communications within the network. A SOC team should proactively hunt for these indicators in Azure Sentinel to identify early-stage compromises and mitigate potential lateral movement before the threat escalates into a full-blown incident.
Threat: 32-bit Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://196.190.133.180:41857/i | online | malware_download | 2026-08-28 |
hxxp://115.56.43.164:34354/i | online | malware_download | 2026-08-28 |
hxxp://103.31.103.204:49856/i | online | malware_download | 2026-08-28 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["103.31.103.204", "115.56.43.164", "196.190.133.180"]);
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(["103.31.103.204", "115.56.43.164", "196.190.133.180"]);
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 and corresponding filters for the URLhaus: 32-bit Malicious URLs detection rule in an enterprise environment:
Scenario: Legacy Line-of-Business Application Updates
InventoryApp-Server01) and exclude any URLs containing the vendor’s update domain (e.g., *.vendor-updates.com).Scenario: Scheduled 32-bit Antivirus Definition Sync
.*\.symantec.com or *.mcafee.com) specifically when the source process is identified as SymCorp.exe or mcagent.exe.Scenario: Admin Script Execution via 32-bit PowerShell
powershell.exe located in C:\Windows\System32\WindowsPowerShell\v1.0). When these scripts fetch configuration data or logs from external cloud storage (e.g., Azure Blob Storage or AWS S