← Back to SOC feed Coverage →

URLhaus: AppleScript Malicious URLs

ioc-hunt HIGH URLhaus
CommonSecurityLogDnsEvents
iocurlhaus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at URLhaus →
Retrieved: 2026-07-12T11:00:00Z · Confidence: medium

Hunt Hypothesis

This hunt targets adversaries leveraging malicious AppleScript URLs to execute unauthorized automation tasks or deliver payloads within macOS environments. Proactively hunting for these specific indicators in Azure Sentinel is critical because it enables early detection of supply chain compromises and script-based attacks that may bypass traditional endpoint protections before they escalate into broader incidents.

IOC Summary

Threat: AppleScript Total URLs: 3 Active URLs: 0

URLStatusThreatDate Added
hxxps://exptersed.com/debug/loader.shofflinemalware_download2026-07-12
hxxps://exptersed.com/debug/payload.applescriptofflinemalware_download2026-07-12
hxxps://exptersed.com/debug/payload.applescript?build=2200432e9275376bedaf93db2cd7feb4offlinemalware_download2026-07-12

KQL: Url Dns Hunt

// Hunt for DNS resolution of URLhaus malicious domains
// Threat: AppleScript
let malicious_domains = dynamic(["exptersed.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc

KQL: Url Proxy Hunt

// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["exptersed.com"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are specific false positive scenarios for the URLhaus: AppleScript Malicious URLs detection rule, tailored for an enterprise environment where legitimate automation frequently utilizes AppleScript to fetch external resources.

Original source: https://urlhaus.abuse.ch/