EXPLORE
← Back to Explore
sublimemediumRule

Open redirect: Cartoon Network

This rule detects the use of Cartoon Network's Denmark domain as an open redirect.

MITRE ATT&CK

defense-evasion

Detection Query

type.inbound
and any(body.links,
        .href_url.domain.sld == 'cartoonnetwork'
        // it has to be www. - not hitting the www doesn't work
        and .href_url.domain.subdomain == 'www'
        // the path startswith a double //
        and strings.starts_with(.href_url.path, '//')
        // the path has to end in a trailing /
        and strings.ends_with(.href_url.path, '/')
)

Data Sources

Email MessagesEmail HeadersEmail Attachments

Platforms

email
Raw Content
name: "Open redirect: Cartoon Network"
description: "This rule detects the use of Cartoon Network's Denmark domain as an open redirect."
type: "rule"
severity: "medium"
source: |
  type.inbound
  and any(body.links,
          .href_url.domain.sld == 'cartoonnetwork'
          // it has to be www. - not hitting the www doesn't work
          and .href_url.domain.subdomain == 'www'
          // the path startswith a double //
          and strings.starts_with(.href_url.path, '//')
          // the path has to end in a trailing /
          and strings.ends_with(.href_url.path, '/')
  )
attack_types:
  - "Credential Phishing"
  - "Spam"
tactics_and_techniques:
  - "Open redirect"
  - "Evasion"
detection_methods:
  - "Content analysis"
  - "URL analysis"
id: "7435e057-5abb-55b4-b1da-f1b6ec191c33"