Detection rules › Sublime MQL

Open redirect: HHS

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

Looks for use of the HHS open redirect.

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 any(body.links,
        .href_url.domain.domain == 'dcis.hhs.gov'
        and strings.ilike(.href_url.query_params, '*service*')
)

Detection logic

Scope: inbound message.

Looks for use of the HHS open redirect.

  1. inbound message
  2. any of body.links where all hold:
    • .href_url.domain.domain is 'dcis.hhs.gov'
    • .href_url.query_params matches '*service*'

Inspects: body.links, body.links[].href_url.domain.domain, body.links[].href_url.query_params, type.inbound. Sensors: strings.ilike.

Indicators matched (2)

FieldMatchValue
body.links[].href_url.domain.domainequalsdcis.hhs.gov
strings.ilikesubstring*service*