This detection identifies adversary activity involving communication with known malicious URLs associated with the IP address 195.177.94.25, which often indicates active threat intelligence feeds flagging potential command and control or phishing infrastructure. A SOC team should proactively hunt for this behavior in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before attackers can establish persistent access within the network.
Threat: 195-177-94-25 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://195.177.94.25/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-17 |
hxxps://195.177.94.25/bin/support.client.exe | online | malware_download | 2026-08-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 195-177-94-25
let malicious_domains = dynamic(["195.177.94.25"]);
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(["195.177.94.25"]);
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/exclusions for the URLhaus: 195-177-94-25 Malicious URLs detection rule:
Scenario: Automated Cloud Backup Service Connectivity
195.177.94.25 (often a CDN node for Microsoft or a specific SaaS provider) to download configuration updates, license keys, or backup metadata.Source Host is part of the “Backup Servers” AD Group and the Destination Port matches standard HTTPS (443) traffic initiated by the service account svc-veeam-agent.Scenario: Scheduled Software License Verification
Task Scheduler entry named “LicenseCheck”) to validate floating licenses against the vendor’s validation server hosted at this IP. This occurs during off-hours (e.g., 02:00 AM).AdobeUpdateService.exe or AutodeskLicenseManager.exe communicating with the target IP.Scenario: Third-Party CRM Data Synchronization