Detection rules › Sublime MQL

Service abuse: Citrix ShareFile impersonation via Outlook plugin

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

Detects inbound messages with Word document attachments containing references to sharefile.com and Outlook plugin system indicators, suggesting abuse of legitimate file sharing services to deliver malicious content.

Threat classification

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

CategoryValues
Attack typesBEC/Fraud, Credential Phishing
Tactics and techniquesFree file host, Social engineering

Event coverage

Rule body MQL

type.inbound
and any(attachments,
        .file_type in ("doc", "docx")
        and any(file.explode(.),
                strings.icontains(.scan.strings.raw, "sharefile.com")
                and strings.icontains(.scan.strings.raw,
                                      "src=system-email-outlookplugin-new"
                )
        )
)  

Detection logic

Scope: inbound message.

Detects inbound messages with Word document attachments containing references to sharefile.com and Outlook plugin system indicators, suggesting abuse of legitimate file sharing services to deliver malicious content.

  1. inbound message
  2. any of attachments where all hold:
    • .file_type in ('doc', 'docx')
    • any of file.explode(.) where all hold:
      • .scan.strings.raw contains 'sharefile.com'
      • .scan.strings.raw contains 'src=system-email-outlookplugin-new'

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

Indicators matched (4)

FieldMatchValue
attachments[].file_typememberdoc
attachments[].file_typememberdocx
strings.icontainssubstringsharefile.com
strings.icontainssubstringsrc=system-email-outlookplugin-new