This hunt targets adversary behavior where external systems or endpoints access known 32-bit malicious URLs identified by URLhaus to facilitate initial infection or command-and-control communication. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify and isolate compromised assets before the malware executes its full payload, thereby reducing dwell time and preventing lateral movement within the network.
Threat: 32-bit Total URLs: 8 Active URLs: 8
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://113.228.208.46:56903/i | online | malware_download | 2026-08-16 |
hxxp://182.124.162.58:48222/bin.sh | online | malware_download | 2026-08-16 |
hxxp://27.215.84.16:59065/i | online | malware_download | 2026-08-16 |
hxxp://115.55.10.187:42654/bin.sh | online | malware_download | 2026-08-16 |
hxxp://123.14.57.190:46376/i | online | malware_download | 2026-08-16 |
hxxp://123.14.57.190:46376/bin.sh | online | malware_download | 2026-08-16 |
hxxp://61.53.218.29:55917/i | online | malware_download | 2026-08-16 |
hxxp://27.215.84.16:59065/bin.sh | online | malware_download | 2026-08-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["61.53.218.29", "182.124.162.58", "27.215.84.16", "113.228.208.46", "123.14.57.190", "115.55.10.187"]);
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(["61.53.218.29", "182.124.162.58", "27.215.84.16", "113.228.208.46", "123.14.57.190", "115.55.10.187"]);
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 5 specific false positive scenarios for the URLhaus: 32-bit Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Legacy Line-of-Business (LOB) Application Updates
cdn.vendor-solutions.com) to the allow-list for this rule, or exclude traffic originating from the specific service account used by the LOB application (e.g., svc-inventory-updater).Scheduled 32-bit Backup Agent Jobs
VeeamAgent.exe or commvault.cmd) and restrict the rule to only trigger if the destination IP is not within the trusted vendor subnet range.Microsoft Office 365 Click-to-Run Updates
office.microsoft.com or update.microsoft.com to check