Brand impersonation: Dashlane
Impersonation of the password management software Dashlane.
Sublime rule (View on GitHub)
1name: "Brand impersonation: Dashlane"
2description: "Impersonation of the password management software Dashlane."
3type: "rule"
4severity: "medium"
5source: |
6 type.inbound
7 and (
8 regex.icontains(sender.display_name, '\bDashlane\b')
9 or strings.ilike(sender.email.domain.domain, '*Dashlane*')
10 )
11 and sender.email.domain.root_domain not in~ ('dashlane.com')
12
13 // negate highly trusted sender domains unless they fail DMARC authentication
14 and (
15 (
16 sender.email.domain.root_domain in $high_trust_sender_root_domains
17 and not headers.auth_summary.dmarc.pass
18 )
19 or sender.email.domain.root_domain not in $high_trust_sender_root_domains
20 )
21
22attack_types:
23 - "Credential Phishing"
24tactics_and_techniques:
25 - "Impersonation: Brand"
26 - "Social engineering"
27detection_methods:
28 - "Header analysis"
29 - "Sender analysis"
30id: "9e400937-4e7e-53fe-ad34-8393ab01890e"