Detection rules › Sublime MQL

DLP: IMSI Number

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

Detects messages containing International Mobile Subscriber Identity (IMSI) numbers.

Event coverage

Rule body MQL

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

Detection logic

Scope: outbound message.

Detects messages containing International Mobile Subscriber Identity (IMSI) numbers.

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

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

Indicators matched (2)

FieldMatchValue
regex.containsregex\b\d{14,15}\b
regex.icontainsregexIMSI|international\s+mobile\s+subscriber|SIM\s+identifier