This detection identifies adversary behavior involving the consumption of malicious URLs hosted on IP 103.77.246.150, which are known to deliver malware payloads capable of compromising endpoint integrity. A SOC team should proactively hunt for this activity in Azure Sentinel to rapidly isolate affected assets and prevent lateral movement before the malware establishes persistence or exfiltrates sensitive data.
Threat: 103-77-246-150 Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.77.246.150/c.sh | online | malware_download | 2026-08-27 |
hxxp://103.77.246.150/w.sh | online | malware_download | 2026-08-27 |
hxxp://103.77.246.150/wget.sh | online | malware_download | 2026-08-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 103-77-246-150
let malicious_domains = dynamic(["103.77.246.150"]);
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(["103.77.246.150"]);
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 for the URLhaus: 103-77-246-150 Malicious URLs detection rule, along with targeted filtering strategies:
Scheduled Antivirus Definition Updates via Microsoft Endpoint Manager (Intune)
User-Agent contains Microsoft-Defender-Antivirus or IntuneManagementExtension, and restrict the source IP range to the internal corporate subnet (e.g., 10.0.0.0/8).Automated Cloud Backup Jobs Using Veeam Backup & Replication
01:30 and 05:00 on weekdays, specifically when the destination port is 443 and the process name matches Veeam.Backup.Service.exe.Third-Party CRM Integration Webhooks (Salesforce/ServiceNow)