This detection identifies adversary activity involving specific malicious URLs associated with the IP address 195.177.94.107, which are likely indicators of active phishing campaigns or command-and-control infrastructure. The SOC team should proactively hunt for these signals in Azure Sentinel to rapidly isolate compromised endpoints and prevent potential data exfiltration before broader network impact occurs.
Threat: 195-177-94-107 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://195.177.94.107/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-17 |
hxxps://195.177.94.107/bin/support.client.exe | online | malware_download | 2026-08-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 195-177-94-107
let malicious_domains = dynamic(["195.177.94.107"]);
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.107"]);
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: 195-177-94-107 Malicious URLs detection rule:
Scenario: Automated Patch Management Scans
195.177.94.107 during scheduled maintenance windows to download update manifests and security definitions.svc_sccm_update) or specific hostnames ending in .patch.local, restricting the rule trigger to non-scheduled hours (e.g., exclude 02:00–04:00 UTC).Scenario: Cloud Backup and Archiving Syncs
443) and source application name (VeeamAgent.exe or RubrikSyncService), ensuring that only traffic from backup subnets (e.g., 10.20.50.x/24) is excluded.Scenario: Third-Party Security Intelligence Feeds