Detection rules › Sublime MQL

DLP: IMEI Number

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

Detects messages containing International Mobile Equipment Identity (IMEI) numbers.

Event coverage

Rule body MQL

type.outbound
and any([body.current_thread.text, subject.subject],
        // IMEI: 15 digits
        regex.contains(., '\b\d{15}\b')
)
and any([body.current_thread.text, subject.subject],
        regex.icontains(., 'IMEI|international\s+mobile\s+equipment|device\s+identifier')
)

Detection logic

Scope: outbound message.

Detects messages containing International Mobile Equipment Identity (IMEI) numbers.

  1. outbound message
  2. any of [body.current_thread.text, subject.subject] where:
    • . matches '\\b\\d{15}\\b'
  3. any of [body.current_thread.text, subject.subject] where:
    • . matches 'IMEI|international\\s+mobile\\s+equipment|device\\s+identifier'

Inspects: body.current_thread.text, subject.subject, type.outbound. Sensors: regex.contains, regex.icontains.

Indicators matched (2)

FieldMatchValue
regex.containsregex\b\d{15}\b
regex.icontainsregexIMEI|international\s+mobile\s+equipment|device\s+identifier