Detection rules › Sublime MQL
Brand impersonation: Outlook
Impersonation of Outlook.com. Senders with "outlook.com" in the subdomain have been observed sending fake account notifications.
Threat classification
Sublime's own taxonomy (not MITRE ATT&CK).
| Category | Values |
|---|---|
| Attack types | Credential Phishing |
| Tactics and techniques | Impersonation: Brand, Lookalike domain, Social engineering |
Event coverage
| Message attribute |
|---|
| sender.email |
| type |
Rule body MQL
type.inbound
and regex.icontains(sender.email.domain.domain, '.*outlook.com.+')
// Negate legitimate outlook root domains
and sender.email.domain.root_domain not in (
'outlook.com.au',
'outlook.com.br',
'outlook.com.ar',
'outlook.at',
'outlook.be',
'outlook.cl',
'outlook.cz',
'outlook.dk',
'outlook.fr',
'outlook.de',
'outlook.com.gr',
'outlook.co.il',
'outlook.in',
'outlook.co.id',
'outlook.ie',
'outlook.it',
'outlook.hu',
'outlook.jp',
'outlook.kr',
'outlook.lv',
'outlook.my',
'outlook.co.nz',
'outlook.com.pe',
'outlook.ph',
'outlook.pt',
'outlook.sa',
'outlook.sg',
'outlook.sk',
'outlook.es',
'outlook.co.th',
'outlook.com.tr',
'outlook.com.vn'
)
and sender.email.email not in $recipient_emails
Detection logic
Scope: inbound message.
Impersonation of Outlook.com. Senders with "outlook.com" in the subdomain have been observed sending fake account notifications.
- inbound message
- sender.email.domain.domain matches '.*outlook.com.+'
- sender.email.domain.root_domain not in ('outlook.com.au', 'outlook.com.br', 'outlook.com.ar', 'outlook.at', 'outlook.be', 'outlook.cl', 'outlook.cz', 'outlook.dk', 'outlook.fr', 'outlook.de', 'outlook.com.gr', 'outlook.co.il', 'outlook.in', 'outlook.co.id', 'outlook.ie', 'outlook.it', 'outlook.hu', 'outlook.jp', 'outlook.kr', 'outlook.lv', 'outlook.my', 'outlook.co.nz', 'outlook.com.pe', 'outlook.ph', 'outlook.pt', 'outlook.sa', 'outlook.sg', 'outlook.sk', 'outlook.es', 'outlook.co.th', 'outlook.com.tr', 'outlook.com.vn')
- sender.email.email not in $recipient_emails
Inspects: sender.email.domain.domain, sender.email.domain.root_domain, sender.email.email, type.inbound. Sensors: regex.icontains. Reference lists: $recipient_emails.
Indicators matched (33)
| Field | Match | Value |
|---|---|---|
regex.icontains | regex | .*outlook.com.+ |
sender.email.domain.root_domain | member | outlook.com.au |
sender.email.domain.root_domain | member | outlook.com.br |
sender.email.domain.root_domain | member | outlook.com.ar |
sender.email.domain.root_domain | member | outlook.at |
sender.email.domain.root_domain | member | outlook.be |
sender.email.domain.root_domain | member | outlook.cl |
sender.email.domain.root_domain | member | outlook.cz |
sender.email.domain.root_domain | member | outlook.dk |
sender.email.domain.root_domain | member | outlook.fr |
sender.email.domain.root_domain | member | outlook.de |
sender.email.domain.root_domain | member | outlook.com.gr |
21 more
sender.email.domain.root_domain | member | outlook.co.il |
sender.email.domain.root_domain | member | outlook.in |
sender.email.domain.root_domain | member | outlook.co.id |
sender.email.domain.root_domain | member | outlook.ie |
sender.email.domain.root_domain | member | outlook.it |
sender.email.domain.root_domain | member | outlook.hu |
sender.email.domain.root_domain | member | outlook.jp |
sender.email.domain.root_domain | member | outlook.kr |
sender.email.domain.root_domain | member | outlook.lv |
sender.email.domain.root_domain | member | outlook.my |
sender.email.domain.root_domain | member | outlook.co.nz |
sender.email.domain.root_domain | member | outlook.com.pe |
sender.email.domain.root_domain | member | outlook.ph |
sender.email.domain.root_domain | member | outlook.pt |
sender.email.domain.root_domain | member | outlook.sa |
sender.email.domain.root_domain | member | outlook.sg |
sender.email.domain.root_domain | member | outlook.sk |
sender.email.domain.root_domain | member | outlook.es |
sender.email.domain.root_domain | member | outlook.co.th |
sender.email.domain.root_domain | member | outlook.com.tr |
sender.email.domain.root_domain | member | outlook.com.vn |