Detection rules › Sublime MQL

Open redirect: Panera Bread

Severity
medium
Type
rule
Source
github.com/sublime-security/sublime-rules

Looks for use of the Panera Bread open redirect coming from someone other than Panera.

Threat classification

Sublime's own taxonomy (not MITRE ATT&CK).

CategoryValues
Attack typesCredential Phishing, Malware/Ransomware
Tactics and techniquesOpen redirect

Event coverage

Rule body MQL

type.inbound
and 0 < length(body.links) < 10
and any(body.links,
        .href_url.domain.domain == 't.e1.panerabread.com'
        and .href_url.path =~ '/r/'
)
and sender.email.domain.root_domain != 'panerabread.com'

Detection logic

Scope: inbound message.

Looks for use of the Panera Bread open redirect coming from someone other than Panera.

  1. inbound message
  2. all of:
    • length(body.links) > 0
    • length(body.links) < 10
  3. any of body.links where all hold:
    • .href_url.domain.domain is 't.e1.panerabread.com'
    • .href_url.path is '/r/'
  4. sender.email.domain.root_domain is not 'panerabread.com'

Inspects: body.links, body.links[].href_url.domain.domain, body.links[].href_url.path, sender.email.domain.root_domain, type.inbound.

Indicators matched (2)

FieldMatchValue
body.links[].href_url.domain.domainequalst.e1.panerabread.com
body.links[].href_url.pathequals/r/