This hunt detects adversary behavior involving the consumption of newly identified malicious web resources flagged by URLhaus under signature 2-58-56-111, which often indicate active phishing campaigns or command-and-control communication channels. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify compromised endpoints and mitigate potential data exfiltration before the threat spreads across the organization’s network perimeter.
Threat: 2-58-56-111 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://2.58.56.111/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-07-30 |
hxxps://2.58.56.111/bin/support.client.exe | online | malware_download | 2026-07-30 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 2-58-56-111
let malicious_domains = dynamic(["2.58.56.111"]);
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(["2.58.56.111"]);
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 and corresponding mitigation strategies for the URLhaus: 2-58-56-111 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Tool Health Checks
falcon.sys, CortexXDR.exe, or SentinelOneAgent.exe connecting to the specific URLhaus IP range (2-58-56-111).Scenario: Scheduled Cloud Backup and Sync Operations
01:00 to 04:00). Alternatively, exclude traffic originating from the specific service accounts used by these tools (e.g., svc-onedrive-backup, veeam-svc) using Active Directory Group filtering.