Brand impersonation: Enbridge
Impersonation of the Canadian energy company Enbridge.
Sublime rule (View on GitHub)
1name: "Brand impersonation: Enbridge"
2description: "Impersonation of the Canadian energy company Enbridge."
3type: "rule"
4severity: "medium"
5source: |
6 type.inbound
7 and (
8 strings.ilike(sender.display_name, '*enbridge*')
9 or strings.ilike(sender.email.domain.domain, '*enbridge*')
10 or strings.ilike(subject.subject, '*enbridge*')
11 )
12 and any(body.links,
13 strings.ilike(.display_text, "*pay now*", "*view your bill*")
14 )
15 // negate replies
16 and (
17 length(headers.references) == 0
18 or not any(headers.hops, any(.fields, strings.ilike(.name, "In-Reply-To")))
19 )
20 and sender.email.domain.root_domain not in~ (
21 'enbridge.com',
22 'enbridgegas.com',
23 // Enbridge Subsidiaries
24 'domenergyoheb.com', // Dominion Energy Ohio
25 'domenergyuteb.com' // Dominion Energy Utah
26 )
27
28attack_types:
29 - "BEC/Fraud"
30 - "Credential Phishing"
31tactics_and_techniques:
32 - "Impersonation: Brand"
33 - "Social engineering"
34detection_methods:
35 - "Content analysis"
36 - "Header analysis"
37 - "Sender analysis"
38id: "203a6a28-d569-590a-9551-24b4b716b469"