Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: "Brand impersonation: Figma with malicious document access overlay"
description: |
"Detects malicious Figma design shares containing brand impersonation or credential phishing content. The rule identifies legitimate Figma share notifications where the embedded thumbnail preview contains "access document" text when OCR'd. Attackers create phishing designs (impersonating Microsoft, DocuSign, or other brands) within Figma, then share them via Figma's legitimate infrastructure to bypass sender reputation checks. The malicious content is rendered in the Figma-hosted thumbnail image itself."
type: "rule"
severity: "high"
source: |
type.inbound
and sender.email.email == "no-reply@email.figma.com"
and length(html.xpath(body.html,
"//img[contains(@src, 'https://api-cdn.figma.com/resize/thumbnails')]"
).nodes
) == 1
and any(html.xpath(body.html, "//img[contains(@src, 'api-cdn.figma.com')]/@src").nodes,
any(file.explode(ml.link_analysis(strings.parse_url(.raw)).screenshot),
strings.icontains(.scan.ocr.raw, "access document")
)
)
attack_types:
- "Credential Phishing"
tactics_and_techniques:
- "Impersonation: Brand"
- "Social engineering"
- "Image as content"
detection_methods:
- "Sender analysis"
- "HTML analysis"
- "URL screenshot"
- "Optical Character Recognition"
- "URL analysis"
id: "fcc7be2c-d4ca-5b66-8e45-c2b5d56ee312"