Detection rules › Sublime MQL

Link: Google Translate (unsolicited)

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

Attackers have used the Google Translate service to deliver links to malicious sites repackaged with a translate.goog top-level domain. This rule identifies instances of Google Translate links from unsolicited senders.

Threat classification

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

CategoryValues
Attack typesCredential Phishing
Tactics and techniquesOpen redirect

Event coverage

Rule body MQL

type.inbound
and any(body.links,
        "google_translate_open_redirect" in .href_url.rewrite.encoders
)
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.

Attackers have used the Google Translate service to deliver links to malicious sites repackaged with a translate.goog top-level domain. This rule identifies instances of Google Translate links from unsolicited senders.

  1. inbound message
  2. any of body.links where:
    • .href_url.rewrite.encoders contains 'google_translate_open_redirect'
  3. any of:
    • not:
      • profile.by_sender().solicited
    • profile.by_sender().any_messages_malicious_or_spam
  4. not:
    • profile.by_sender().any_messages_benign

Inspects: body.links, body.links[].href_url.rewrite.encoders, type.inbound. Sensors: profile.by_sender.

Indicators matched (1)

FieldMatchValue
body.links[].href_url.rewrite.encoderscontainsgoogle_translate_open_redirect