This detection rule identifies adversary behavior where endpoints access known malicious URLs associated with the 2-58-56-151 threat signature, indicating potential web-based threats such as phishing or drive-by downloads. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised assets and prevent lateral movement before the malicious content executes on user systems.
Threat: 2-58-56-151 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://2.58.56.151/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-11 |
hxxps://2.58.56.151/bin/support.client.exe | offline | malware_download | 2026-08-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 2-58-56-151
let malicious_domains = dynamic(["2.58.56.151"]);
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.151"]);
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 exclusion strategies for the URLhaus: 2-58-56-151 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Patch Management Scans
ccmexec.exe for SCCM or IvantiAgent.exe) and restrict the alert if the destination URL domain matches known vendor domains (e.g., *.microsoft.com, *.ivanti.com).Scenario: Scheduled Cloud Backup Verification Jobs
*.aws.amazon.com or *.azure.com) which might be tagged by URLhaus due to dynamic subdomain generation, triggering a false positive on the 2-58-56-151 tag.svc-backup-agent) or exclude URLs containing known cloud provider root domains (*.amazonaws.com, *.cloudapp.azure.com) when the source port is a standard backup service port.**Scenario: Third-Party CRM