This hunt detects adversary behavior where endpoints access a specific cluster of 13 malicious URLs identified by URLhaus under the tag 185-113-223-93, indicating potential command-and-control communication or phishing activity. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify and isolate compromised assets before they can exfiltrate data or establish persistent access within the network.
Threat: 185-113-223-93 Total URLs: 13 Active URLs: 13
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://185.113.223.93/kushnet.x64-test | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.ppc | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.arm5 | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.mips | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.x32 | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.ppc440 | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.arm6 | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.arm4l | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.m68k | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.arm4tl | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.sh4 | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.arm7 | online | malware_download | 2026-09-01 |
hxxp://185.113.223.93/kushnet.mipsel | online | malware_download | 2026-09-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 185-113-223-93
let malicious_domains = dynamic(["185.113.223.93"]);
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(["185.113.223.93"]);
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: 185-113-223-93 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated vulnerability scanning tools (e.g., Tenable Nessus, Qualys, or Microsoft Defender Vulnerability Manager) performing daily external reachability tests against the IP 185.113.223.93 to verify firewall rules and web application availability.
svc_nessus, qualys_agent) or restrict the rule to exclude destination ports commonly used for scanning (e.g., 80, 443) when the source IP belongs to the internal DMZ network range.Scenario: Scheduled backup jobs utilizing cloud storage gateways (such as Veeam Backup & Replication connecting to an AWS S3 endpoint or Rubrik) that route traffic through 185.113-223-93 as a proxy or CDN node for data ingestion.
VeeamAgent.exe, rubrik-agent) and limit the alert to business hours only, assuming backups occur outside standard office times or via a dedicated network segment.Scenario: Enterprise Software as a Service (SaaS) applications (like Salesforce, Workday, or ServiceNow) utilizing 185.113-223.93 as a load balancer for their API endpoints, which users access daily for legitimate business operations.