This hunt detects adversary activity involving connections to known malicious URLs (tagged 203-159-90-118) that may indicate active phishing campaigns or command-and-control communications from compromised endpoints. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to rapidly identify and isolate potential threats before they escalate into broader data exfiltration or lateral movement incidents.
Threat: 203-159-90-118 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://203.159.90.118/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-21 |
hxxp://203.159.90.118/bin/support.client.exe | offline | malware_download | 2026-08-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 203-159-90-118
let malicious_domains = dynamic(["203.159.90.118"]);
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(["203.159.90.118"]);
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 4 specific false positive scenarios for the URLhaus: 203-159-90-118 Malicious URLs detection rule, including targeted filters and exclusions:
Scenario: Automated Security Scanner Traffic
203-159-90-118 during their scheduled discovery cycles.Tenable.Nessus.Service) or specific IP ranges assigned to the security operations center (SOC) infrastructure.Scenario: Cloud Backup and Synchronization Agents
203-159-90-118 is a legitimate CDN node used by these vendors for manifest downloads, the detection logic will flag routine backup synchronization jobs as malicious.C:\Program Files\Veeam\ or C:\Windows\System32\DcRmSvc.exe when connecting to known vendor IP ranges.Scenario: Scheduled Patch Management Deployments