Sublime Security unknown experimental mql

Attachment with free subdomain host URL (unsolicited)

Recursively scans files and archives to detect links to free subdomain hosts. Free subdomain hosts are commonly used to host credential phishing sites.

View Source

Detection Logic

type.inbound
and any(attachments,
        .file_extension in~ ("pdf")
        and any(file.explode(.),
                any(.scan.url.urls,
                    .domain.root_domain in $free_subdomain_hosts
                    and .domain.subdomain is not null
                    and .domain.subdomain != "www"
                    and .domain.domain != "sts.amazonaws.com"
                    and .domain.root_domain != "zendesk.com"
                )
        )
)
and (
  (
    sender.email.domain.root_domain in $free_email_providers
    and sender.email.email not in $recipient_emails
  )
  or (
    sender.email.domain.root_domain not in $free_email_providers
    and sender.email.domain.domain not in $recipient_domains
  )
)

Field Validations

Loading…

Comments (0)

Loading comments...