This hunt detects adversary behavior where endpoints access malicious URLs associated with the IP address 192.142-53-225, indicating potential command-and-control communication or phishing delivery attempts. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify and isolate compromised systems before lateral movement or data exfiltration occurs.
Threat: 192-142-53-225 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://192.142.53.225/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-19 |
hxxps://192.142.53.225/bin/support.client.exe | online | malware_download | 2026-08-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 192-142-53-225
let malicious_domains = dynamic(["192.142.53.225"]);
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(["192.142.53.225"]);
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: 192-142-53-225 Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Scanner Probing
192.142.53.225, to validate connectivity and fetch latest malware signatures.Source Host matches *scanner-server-01* OR Process Name equals nessus.exe / qualyspcagent.exe.Scenario: Scheduled Cloud Backup & Sync Operations
01:00 and 05:00 (local time) where the Process Name is VeeamTransportService.exe or rubrik-agent.exe.Scenario: Endpoint Protection Cloud Connectivity