This detection identifies adversary activity involving the utilization of specific malicious URLs (tagged 124-198-131-91) that are likely being leveraged for command and control or initial phishing campaigns to compromise endpoints. Proactive hunting in Azure Sentinel is critical because these high-severity indicators may represent a targeted threat requiring immediate investigation to prevent data exfiltration or lateral movement before broader impact occurs.
Threat: 124-198-131-91 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://124.198.131.91/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-13 |
hxxps://124.198.131.91/bin/support.client.exe | offline | malware_download | 2026-08-13 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 124-198-131-91
let malicious_domains = dynamic(["124.198.131.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(["124.198.131.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 5 specific false positive scenarios for the URLhaus: 124-198-131-91 Malicious URLs detection rule, along with recommended filters and exclusions tailored for an enterprise environment:
Automated Patch Management Scans
124-198-131-91 (which may be a cloud-based threat intelligence feed or a specific vendor update server) to download patch manifests and security signatures, triggering the rule despite being a trusted administrative task.Source Host Name matches known SCCM/Ivanti agent identities (e.g., SCCM-Agent-*) or restricts the rule to exclude URLs containing specific vendor paths like /updates/signatures.Cloud Backup and Archiving Services
124-198-131-91, to verify checksums and upload incremental backup blocks. This legitimate high-volume traffic is misidentified as a malicious URL interaction by the detection logic.Destination Port (e.g., 443 for HTTPS) combined with a whitelist of known backup service accounts (e.g., Veeam-Service-Account). Alternatively, exclude traffic originating from the dedicated “Backup Subnet” IP range.Third-Party SIEM and Log Aggregation