Detection rules › Sublime MQL

Service abuse: Elastic alerts extortion

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

Detects inbound messages impersonating Elastic alerts sender that contain extortion content identified through natural language processing with medium to high confidence.

Threat classification

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

CategoryValues
Attack typesExtortion
Tactics and techniquesImpersonation: Brand, Social engineering

Event coverage

Rule body MQL

type.inbound
and sender.email.email == "noreply@alerts.elastic.co"
and any(ml.nlu_classifier(body.current_thread.text).intents,
        .name == "extortion" and .confidence != "low"
)

Detection logic

Scope: inbound message.

Detects inbound messages impersonating Elastic alerts sender that contain extortion content identified through natural language processing with medium to high confidence.

  1. inbound message
  2. sender.email.email is 'noreply@alerts.elastic.co'
  3. any of ml.nlu_classifier(body.current_thread.text).intents where all hold:
    • .name is 'extortion'
    • .confidence is not 'low'

Inspects: body.current_thread.text, sender.email.email, type.inbound. Sensors: ml.nlu_classifier.

Indicators matched (2)

FieldMatchValue
sender.email.emailequalsnoreply@alerts.elastic.co
ml.nlu_classifier(body.current_thread.text).intents[].nameequalsextortion