Detection rules › Sublime MQL
Sublime MQL rules: free
| Rule | Severity |
|---|---|
| Link: Free file host link with 'Important Viewing Note' lure | medium |
| Mismatched links: Free file share with urgent language | medium |
Link: Free file host link with 'Important Viewing Note' lure
#Detects inbound messages containing links to free file hosting domains paired with the phrase 'important viewing note' in the message body. These messages often masquerade as institutional or educational communications — such as student conduct reports or advancement initiatives — to add legitimacy and encourage recipients to follow the hosted link.
Threat classification
Sublime's own taxonomy (not MITRE ATT&CK).
| Category | Values |
|---|---|
| Attack types | Credential Phishing |
| Tactics and techniques | Free file host, Social engineering, Impersonation: Brand |
Telemetry coverage
| Platform | Record / event type |
|---|---|
| Sublime | Inbound email message |
Message attributes
Rule body
type.inbound
and any(body.current_thread.links, .href_url.domain.domain in $free_file_hosts)
and strings.icontains(body.current_thread.text, 'important viewing note')
Detection logic
Scope: inbound message.
Detects inbound messages containing links to free file hosting domains paired with the phrase 'important viewing note' in the message body. These messages often masquerade as institutional or educational communications — such as student conduct reports or advancement initiatives — to add legitimacy and encourage recipients to follow the hosted link.
- inbound message
any of
body.current_thread.linkswhere:- .href_url.domain.domain in $free_file_hosts
- body.current_thread.text contains 'important viewing note'
Inspects: body.current_thread.links, body.current_thread.links[].href_url.domain.domain, body.current_thread.text, type.inbound. Sensors: strings.icontains. Reference lists: $free_file_hosts.
Indicators matched (1)
| Field | Match | Value |
|---|---|---|
strings.icontains | substring | important viewing note |
Stages and Predicates
Stage 1: mql_rule
and
any(body.current_thread.links)
macro "body.current_thread.links[].href_url.domain.domain in free_file_hosts"
body.current_thread.text contains "important viewing note"
type.inbound eq "true"Indicators
These rows show field, operator, and value matches.
| Field | Kind | Values | Search |
|---|---|---|---|
body.current_thread.text | contains |
| field:"body.current_thread.text" kind:contains value:"important viewing note" |
type.inbound | eq |
| field:"type.inbound" kind:eq value:"true" |