diff --git a/detection-rules/brand_impersonation_figma_doc_access_overlay.yml b/detection-rules/brand_impersonation_figma_doc_access_overlay.yml new file mode 100644 index 00000000000..315cadebdcb --- /dev/null +++ b/detection-rules/brand_impersonation_figma_doc_access_overlay.yml @@ -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"