Brand impersonation: Gusto

Impersonation of Gusto, a cloud-based payroll management company.

Sublime rule (View on GitHub)

 1name: "Brand impersonation: Gusto"
 2description: |
 3    Impersonation of Gusto, a cloud-based payroll management company.
 4type: "rule"
 5severity: "medium"
 6source: |
 7  type.inbound
 8  and (
 9    strings.ilike(sender.display_name, '*gusto*')
10    or strings.ilevenshtein(sender.display_name, 'gusto') <= 1
11    or strings.ilike(sender.email.domain.domain, '*gusto*')
12  )
13  and any(ml.logo_detect(beta.message_screenshot()).brands,
14          .name == "Gusto" and .confidence in ("medium", "high")
15  )
16  and sender.email.domain.root_domain !~ 'gusto.com'
17  and sender.email.email not in $recipient_emails  
18attack_types:
19  - "Credential Phishing"
20tactics_and_techniques:
21  - "Impersonation: Brand"
22  - "Lookalike domain"
23  - "Social engineering"
24detection_methods:
25  - "Computer Vision"
26  - "Content analysis"
27  - "Header analysis"
28  - "Sender analysis"
29id: "54025c1c-34bc-5cbf-97b8-d544806fc587"
to-top