This hunt detects adversary behavior involving the consumption of seven specific malicious URLs identified by URLhaus under the tag 95-155-151-113, which often indicate active phishing campaigns or command-and-control communications. A SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly identify and isolate compromised endpoints before they facilitate data exfiltration or lateral movement across the network.
Threat: 95-155-151-113 Total URLs: 7 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://95.155.151.113/d/slim.arm64 | online | malware_download | 2026-08-08 |
hxxp://95.155.151.113/realtek.sh | online | malware_download | 2026-08-08 |
hxxp://95.155.151.113/d/slim.arm7 | online | malware_download | 2026-08-08 |
hxxp://95.155.151.113/d/slim.mpsl | online | malware_download | 2026-08-08 |
hxxp://95.155.151.113/d/slim.arm | online | malware_download | 2026-08-08 |
hxxp://95.155.151.113/gpon.sh | offline | malware_download | 2026-08-08 |
hxxp://95.155.151.113/d/slim.mips | online | malware_download | 2026-08-08 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 95-155-151-113
let malicious_domains = dynamic(["95.155.151.113"]);
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(["95.155.151.113"]);
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 their corresponding filters for the URLhaus: 95-155-151-113 Malicious URLs detection rule:
Scenario: Automated Patch Management Scans
95-155-151-113 as part of their update verification process, even though no user interaction is occurring.Scenario: Security Information and Event Management (SIEM) Enrichment
95-155-151-113 for data ingestion will generate an alert.svc-siem-enrichment.Scenario: Cloud Backup and Archiving Agents