Detection rules › Sublime MQL
Open redirect: Google Web Light
Message contains use of the Google Web Light open redirect. Google Web Light was sunset on December 19 2022.
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 == "googleweblight.com"
and regex.match(.href_url.query_params, "(lite_url|u)=.*")
)
and (
not profile.by_sender().solicited
or profile.by_sender().any_messages_malicious_or_spam
)
and not profile.by_sender().any_messages_benign
Detection logic
Scope: inbound message.
Message contains use of the Google Web Light open redirect. Google Web Light was sunset on December 19 2022.
- inbound message
any of
body.linkswhere all hold:- .href_url.domain.root_domain is 'googleweblight.com'
- .href_url.query_params matches '(lite_url|u)=.*'
any of:
not:
- profile.by_sender().solicited
- profile.by_sender().any_messages_malicious_or_spam
not:
- profile.by_sender().any_messages_benign
Inspects: body.links, body.links[].href_url.domain.root_domain, body.links[].href_url.query_params, type.inbound. Sensors: profile.by_sender, regex.match.
Indicators matched (2)
| Field | Match | Value |
|---|---|---|
body.links[].href_url.domain.root_domain | equals | googleweblight.com |
regex.match | regex | (lite_url|u)=.* |