Microsoft Sentinel Analytic Rules
cloudbrothers.infoAzure Sentinel RepoToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeToggle Dark/Light/Auto modeBack to homepage

Corelight - SMTP Email containing NON Ascii Characters within the Subject

Back
Id50c61708-9824-46f3-87cf-22490796fae2
RulenameCorelight - SMTP Email containing NON Ascii Characters within the Subject
DescriptionDetects where an emails contain non ascii characters within the Subject.
SeverityLow
TacticsInitialAccess
TechniquesT1566
Required data connectorsCorelight
KindScheduled
Query frequency1h
Query period1h
Trigger threshold0
Trigger operatorgt
Source Urihttps://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Corelight/Analytic Rules/CorelightSMTPEmailSubjectNonAsciiCharacters.yaml
Version2.1.0
Arm template50c61708-9824-46f3-87cf-22490796fae2.json
Deploy To Azure
corelight_smtp
| where subject hasprefix  @'\=?utf-16'
| summarize recipients = dcount(_to)
| extend k = 1
| join (corelight_smtp
        | where subject hasprefix  @'\=?utf-16'
        | summarize by _to
        | extend k = 1) on k
| where recipients > 1
version: 2.1.0
entityMappings:
- entityType: MailMessage
  fieldMappings:
  - identifier: Recipient
    columnName: _to
id: 50c61708-9824-46f3-87cf-22490796fae2
triggerThreshold: 0
status: Available
triggerOperator: gt
kind: Scheduled
description: |
    'Detects where an emails contain non ascii characters within the Subject.'
tactics:
- InitialAccess
name: Corelight - SMTP Email containing NON Ascii Characters within the Subject
requiredDataConnectors:
- connectorId: Corelight
  dataTypes:
  - Corelight_v2_smtp
  - corelight_smtp
queryPeriod: 1h
query: |
  corelight_smtp
  | where subject hasprefix  @'\=?utf-16'
  | summarize recipients = dcount(_to)
  | extend k = 1
  | join (corelight_smtp
          | where subject hasprefix  @'\=?utf-16'
          | summarize by _to
          | extend k = 1) on k
  | where recipients > 1  
queryFrequency: 1h
severity: Low
OriginalUri: https://github.com/Azure/Azure-Sentinel/blob/master/Solutions/Corelight/Analytic Rules/CorelightSMTPEmailSubjectNonAsciiCharacters.yaml
relevantTechniques:
- T1566