Detection rules › Sublime MQL

Attachment: ICS with employee policy review lure

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

Detects ICS calendar attachments containing references to 'policy review' and 'secure access' terminology, which may be used in social engineering attacks to prompt users to take action under the guise of compliance or security requirements.

Threat classification

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

CategoryValues
Attack typesCredential Phishing, BEC/Fraud
Tactics and techniquesEvasion, ICS Phishing, Social engineering

Event coverage

Rule body MQL

type.inbound
and any(filter(attachments,
               .file_type in~ ('ics')
               or .content_type in ("text/calendar", "application/ics")
        ),
        any(file.explode(.),
            .depth == 0
            and any(.scan.strings.strings,
                    strings.icontains(., 'policy review')
            )
            and any(.scan.strings.strings,
                    strings.icontains(., 'secure access')
            )
        )
)

Detection logic

Scope: inbound message.

Detects ICS calendar attachments containing references to 'policy review' and 'secure access' terminology, which may be used in social engineering attacks to prompt users to take action under the guise of compliance or security requirements.

  1. inbound message
  2. any of filter(attachments) where:
    • any of file.explode(.) where all hold:
      • .depth is 0
      • any of .scan.strings.strings where:
        • . contains 'policy review'
      • any of .scan.strings.strings where:
        • . contains 'secure access'

Inspects: attachments[].content_type, attachments[].file_type, type.inbound. Sensors: file.explode, strings.icontains.

Indicators matched (5)

FieldMatchValue
attachments[].file_typememberics
attachments[].content_typemembertext/calendar
attachments[].content_typememberapplication/ics
strings.icontainssubstringpolicy review
strings.icontainssubstringsecure access