This detection identifies adversary activity involving the execution of 32-bit malware payloads delivered through known malicious URLs flagged by URLhaus. Proactive hunting in Azure Sentinel is critical to rapidly isolate compromised endpoints and prevent lateral movement before these specific threats can establish persistence or exfiltrate sensitive data.
Threat: 32-bit Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://123.14.85.245:47055/bin.sh | online | malware_download | 2026-08-31 |
hxxp://154.223.128.215:42469/i | online | malware_download | 2026-08-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["123.14.85.245", "154.223.128.215"]);
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(["123.14.85.245", "154.223.128.215"]);
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 (LOB) Application Updates
Exclude if ProcessImageName contains "InventoryApp.exe" AND ProcessArchitecture is 32-bit.Scenario: Scheduled Antivirus Definition Syncs
Exclude if ProcessName is "SymantecUpdateService.exe" AND ScheduledJobID matches "DailyDefSync".Scenario: 32-bit Browser Plugins and Extensions