Detection rules › Sublime MQL

Open redirect: BMW USA

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

Message contains use of BMW USA's open redirect but the sender is not BMW.

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 sender.email.domain.root_domain not in~ ('bmw.com', 'bmwusa.com')
and any(body.links,
        .href_url.domain.domain == 't.msg.bmwusa.com'
        and .href_url.path =~ '/r/'
)

Detection logic

Scope: inbound message.

Message contains use of BMW USA's open redirect but the sender is not BMW.

  1. inbound message
  2. sender.email.domain.root_domain not in ('bmw.com', 'bmwusa.com')
  3. any of body.links where all hold:
    • .href_url.domain.domain is 't.msg.bmwusa.com'
    • .href_url.path is '/r/'

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

Indicators matched (4)

FieldMatchValue
sender.email.domain.root_domainmemberbmw.com
sender.email.domain.root_domainmemberbmwusa.com
body.links[].href_url.domain.domainequalst.msg.bmwusa.com
body.links[].href_url.pathequals/r/