EXPLORE
← Back to Explore
sublimemediumRule

Link: URL redirecting to blob URL

Detects messages containing links that redirect to blob URLs, indicating potential malware delivery or credential harvesting.

Detection Query

type.inbound
and 0 < length(body.links) < 10
and length(recipients.to) == 1
and recipients.to[0].email.domain.valid
and any(body.links,
        // the url redirects to a blob url
        ml.link_analysis(.).effective_url.scheme =~ 'blob'
)

Data Sources

Email MessagesEmail HeadersEmail Attachments

Platforms

email
Raw Content
name: "Link: URL redirecting to blob URL"
description: "Detects messages containing links that redirect to blob URLs, indicating potential malware delivery or credential harvesting."
type: "rule"
severity: "medium"
source: |
  type.inbound
  and 0 < length(body.links) < 10
  and length(recipients.to) == 1
  and recipients.to[0].email.domain.valid
  and any(body.links,
          // the url redirects to a blob url
          ml.link_analysis(.).effective_url.scheme =~ 'blob'
  )

attack_types:
  - "Credential Phishing"
  - "Malware/Ransomware"
tactics_and_techniques:
  - "Evasion"
  - "Free file host"
  - "Open redirect"
detection_methods:
  - "Sender analysis"
  - "URL analysis"
  - "Threat intelligence"
id: "1677135b-5d97-55fc-8fe7-11aa19dd165c"