Detection rules › Sublime MQL

Attachment: Fake lawyer & sports agent identities

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

Detects messages containing attachments or content that reference known fake identities used in FC Barcelona scams, including fake lawyer Michael Gerardus Hermanus Demon and sports agents with the surname Giuffrida. The rule examines EXIF metadata, OCR text from attachments, and message body content for these specific identity markers.

Threat classification

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

CategoryValues
Attack typesBEC/Fraud
Tactics and techniquesImpersonation: VIP, Social engineering

Event coverage

Message attribute
type

Rule body MQL

type.inbound
and length(attachments) == 1
and beta.parse_exif(attachments[0]).creator == "Gabriele Giuffrida"

Detection logic

Scope: inbound message.

Detects messages containing attachments or content that reference known fake identities used in FC Barcelona scams, including fake lawyer Michael Gerardus Hermanus Demon and sports agents with the surname Giuffrida. The rule examines EXIF metadata, OCR text from attachments, and message body content for these specific identity markers.

  1. inbound message
  2. length(attachments) is 1
  3. beta.parse_exif(attachments[0]).creator is 'Gabriele Giuffrida'

Inspects: attachments[0], type.inbound. Sensors: beta.parse_exif.