Detection rules › Sublime MQL
Open redirect: U.S. Antarctic Program Data Center (USAP-DC)
Message contains use of the U.S. Antarctic Program Data Center (USAP-DC) open redirect.
Threat classification
Sublime's own taxonomy (not MITRE ATT&CK).
| Category | Values |
|---|---|
| Attack types | Credential Phishing, Malware/Ransomware |
| Tactics and techniques | Open redirect |
Event coverage
| Message attribute |
|---|
| body |
| body.links (collection) |
| type |
Rule body MQL
type.inbound
and any(body.links,
.href_url.domain.root_domain == "usap-dc.org"
and .href_url.path =~ "/tracker"
and strings.starts_with(.href_url.query_params, "type=dataset&url=http")
)
Detection logic
Scope: inbound message.
Message contains use of the U.S. Antarctic Program Data Center (USAP-DC) open redirect.
- inbound message
any of
body.linkswhere all hold:- .href_url.domain.root_domain is 'usap-dc.org'
- .href_url.path is '/tracker'
- .href_url.query_params starts with 'type=dataset&url=http'
Inspects: body.links, body.links[].href_url.domain.root_domain, body.links[].href_url.path, body.links[].href_url.query_params, type.inbound. Sensors: strings.starts_with.
Indicators matched (3)
| Field | Match | Value |
|---|---|---|
body.links[].href_url.domain.root_domain | equals | usap-dc.org |
body.links[].href_url.path | equals | /tracker |
strings.starts_with | prefix | type=dataset&url=http |