Detection rules › Sublime MQL

Attachment: PDF Object Hash with Blue File Icon

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

Detects PDF attachments containing a specific object hash (8638ef6bfe382a927aa12a18f2150757) associated with encrypted PDFs leading to cred phishing.

Threat classification

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

CategoryValues
Attack typesMalware/Ransomware
Tactics and techniquesPDF, Evasion

Event coverage

Rule body MQL

type.inbound
and any(filter(attachments, .file_type == "pdf"),
        any(file.explode(.),
            .scan.pdf_obj_hash.object_hash == "8638ef6bfe382a927aa12a18f2150757"
        )
)

Detection logic

Scope: inbound message.

Detects PDF attachments containing a specific object hash (8638ef6bfe382a927aa12a18f2150757) associated with encrypted PDFs leading to cred phishing.

  1. inbound message
  2. any of filter(attachments) where:
    • any of file.explode(.) where:
      • .scan.pdf_obj_hash.object_hash is '8638ef6bfe382a927aa12a18f2150757'

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

Indicators matched (2)

FieldMatchValue
attachments[].file_typeequalspdf
file.explode(filter(attachments)[])[].scan.pdf_obj_hash.object_hashequals8638ef6bfe382a927aa12a18f2150757