This hunt detects adversary behavior involving the execution of 32-bit malware that communicates with known malicious URLs identified by URLhaus, which often indicates early-stage compromise or lateral movement attempts. A SOC team should proactively hunt for this in Azure Sentinel to rapidly identify and isolate endpoints interacting with these specific threat indicators before they escalate into broader incidents within the organization’s network.
Threat: 32-bit Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://182.113.251.27:57017/i | online | malware_download | 2026-08-22 |
hxxp://123.5.171.102:41517/bin.sh | online | malware_download | 2026-08-22 |
hxxp://182.127.168.179:52810/bin.sh | online | malware_download | 2026-08-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 32-bit
let malicious_domains = dynamic(["123.5.171.102", "182.113.251.27", "182.127.168.179"]);
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.5.171.102", "182.113.251.27", "182.127.168.179"]);
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 Admin Tool Connectivity
SCCM-Admin01, Splunk-Scheduler) where the destination URL contains the domain suffix of the trusted vendor (e.g., *.microsoft.com or *.splunk.com).Scheduled 32-bit Backup and Reporting Agents
VeeamAgent.exe or CrystalReportScheduler) combined with a whitelist of known good destination domains used by these agents.Development Environment Build Pipelines