Brand impersonation: Dropbox
Impersonation of Dropbox, a file sharing service.
Sublime rule (View on GitHub)
1name: "Brand impersonation: Dropbox"
2description: |
3 Impersonation of Dropbox, a file sharing service.
4type: "rule"
5severity: "medium"
6source: |
7 type.inbound
8 and (
9 strings.ilike(sender.display_name, '*dropbox*')
10 or strings.ilevenshtein(sender.display_name, 'dropbox') <= 1
11 or strings.ilike(sender.email.domain.domain, '*dropbox*')
12 )
13 and sender.email.domain.root_domain !~ 'dropbox.com'
14 and any(attachments,
15 .file_type in $file_types_images
16 and any(file.explode(.), strings.ilike(.scan.ocr.raw, "*dropbox*"))
17 )
18 and sender.email.email not in $recipient_emails
19attack_types:
20 - "Credential Phishing"
21tactics_and_techniques:
22 - "Impersonation: Brand"
23 - "Social engineering"
24detection_methods:
25 - "Content analysis"
26 - "File analysis"
27 - "Header analysis"
28 - "Sender analysis"
29id: "61f11d12-7033-53c9-a95a-df982ff31c4b"