This hunt detects adversary activity involving traffic to specific malicious URLs identified by URLhaus, which are likely indicators of phishing campaigns or command-and-control infrastructure associated with threat signature 31-42-176-91-5001. The SOC team should proactively investigate these connections in Azure Sentinel to identify early-stage compromises and prevent potential data exfiltration or lateral movement before broader impact occurs.
Threat: 31-42-176-91-5001 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://31.42.176.91:5001/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-09-01 |
hxxp://31.42.176.91:5001/bin/support.client.exe | online | malware_download | 2026-09-01 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 31-42-176-91-5001
let malicious_domains = dynamic(["31.42.176.91"]);
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(["31.42.176.91"]);
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: 31-42-176-91-5001 Malicious URLs detection rule:
Scenario: Scheduled Cloud Backup Agent Scans
backup-srv-01.corp.local) combined with a Time Window constraint to exclude alerts generated between 02:00 and 06:00 daily.Scenario: Automated Software Update Mechanisms
31-42-176-91-5001 often corresponds to a sub-domain used by these vendors for policy distribution, which can be misidentified as malicious if the vendor’s IP range overlaps with the threat tag.FalconSensor.exe, MsMpEng.exe) and filter out any URL requests containing known vendor domains (e.g., *.crowdstrike.com or *.microsoftonline.com).Scenario: Third-Party CRM/ERP Integration Webhooks