This detection identifies adversary activity involving known malicious ASCII URLs that may indicate phishing campaigns or command-and-control communications leveraging text-based web resources. Proactive hunting in Azure Sentinel is essential to rapidly isolate these specific threats before they compromise endpoints through user interaction with high-severity external links.
Threat: ascii Total URLs: 5 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://103.229.53.84:8443/run.ps1 | offline | malware_download | 2026-08-19 |
hxxp://103.229.53.84:8443/r.ps1 | offline | malware_download | 2026-08-19 |
hxxp://103.229.53.84:8443/update.ps1 | offline | malware_download | 2026-08-19 |
hxxp://akb.cat/N330 | offline | malware_download | 2026-08-19 |
hxxps://verifyidentify.com/check | offline | malware_download | 2026-08-19 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ascii
let malicious_domains = dynamic(["verifyidentify.com", "103.229.53.84", "akb.cat"]);
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(["verifyidentify.com", "103.229.53.84", "akb.cat"]);
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 Security Tool Updates
updates.crowdstrike.com or go.microsoft.com) which host ASCII-based configuration manifests and signature feeds that URLhaus may flag as “malicious” due to high traffic volume or shared IP ranges.url contains ".crowdstrike.com" OR url contains ".microsoft.com"). Alternatively, create a whitelist rule for these specific FQDNs within the detection engine to suppress alerts during known maintenance windows.Scenario: Automated Compliance and Reporting Scripts
process_name contains "python.exe" OR process_name contains "powershell.exe"). Additionally, filter out URLs that match known internal regex patterns for compliance data endpoints (e.g., url matches ".*compliance-data.*.json$").Scenario: Legacy Application Data Synchronization