Detection rules › Sublime MQL

Attachment: PDF with suspicious view document characteristics

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

PDF attachment contains suspicious characteristics commonly associated with document viewing lures, as detected by YARA pattern matching.

Threat classification

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

CategoryValues
Attack typesCredential Phishing, Malware/Ransomware
Tactics and techniquesPDF, Social engineering, Evasion

Event coverage

Rule body MQL

type.inbound
and any(filter(attachments, .file_type == "pdf"),
        any(file.explode(.),
            any(.scan.yara.matches,
                .name == "view_document_pdf_characteristics"
            )
        )
)

Detection logic

Scope: inbound message.

PDF attachment contains suspicious characteristics commonly associated with document viewing lures, as detected by YARA pattern matching.

  1. inbound message
  2. any of filter(attachments) where:
    • any of file.explode(.) where:
      • any of .scan.yara.matches where:
        • .name is 'view_document_pdf_characteristics'

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

Indicators matched (2)

FieldMatchValue
attachments[].file_typeequalspdf
file.explode(filter(attachments)[])[].scan.yara.matches[].nameequalsview_document_pdf_characteristics