This rule detects adversary behavior involving the access of known malicious web resources identified by URLhaus, specifically targeting threats associated with the signature 36-255-97-23. The SOC team should proactively hunt for these indicators in Azure Sentinel to identify potential initial access or command and control activities that could lead to data exfiltration or lateral movement within the network.
Threat: 36-255-97-23 Total URLs: 16 Active URLs: 16
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://36.255.97.23/iran.i486 | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.armv4l | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/telnet.sh | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.armv6l | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.armv7l | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.x86_64 | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.powerpc | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.arc | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/cat.sh | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.m68k | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.sh4 | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.armv5l | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.mipsel | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.mipsrouter | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.sparc | online | malware_download | 2026-08-31 |
hxxp://36.255.97.23/iran.mips | online | malware_download | 2026-08-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 36-255-97-23
let malicious_domains = dynamic(["36.255.97.23"]);
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(["36.255.97.23"]);
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 |
Scenario: Scheduled automated backup jobs initiated by Veeam Backup & Replication or Commvault agents connecting to the cloud storage gateway at https://gateway.backup-cloud.com/api/v1/status. The URL structure matches the detection pattern for 36-255-97-23 due to similar path segments, triggering a false positive during nightly windows.
VeeamAgent.exe or CommServe.exe and the destination URL domain is explicitly whitelisted as *.backup-cloud.com.Scenario: The IT Operations team utilizes a centralized patch management tool, specifically Ivanti Neurons for Patch Management, which queries the vendor’s update repository at https://updates.ivanti.com/feeds/latest.xml. This legitimate API call generates traffic that mimics the malicious URL signature defined in the 36-255-97-23 rule.
IT_Operations group and the destination URL ends with .xml or .json, specifically targeting the domain updates.ivanti.com.Scenario: A recurring SQL Server maintenance job executes a PowerShell script that calls an external analytics service at https://analytics.enterprise-solutions.net/metrics/health-check. The script runs every 15 minutes via Task Scheduler, generating consistent network traffic that overlaps with the rule’s detection logic.
C:\Program Files\Microsoft SQL Server\MSSQL16.MSSQLSERVER\MSSQL\Binn\sqlservr.exe when accessing URLs containing /metrics/health-check, provided the source IP is within the internal management subnet