Medium Severity
Brand impersonation: Barracuda Networks
Description
Impersonation of Barracuda Networks, an IT security company.
References
No references.
Sublime Security
Created Aug 17th, 2023 • Last updated Jul 8th, 2024
Feed Source
Sublime Core Feed
Source
type.inbound
and (
strings.ilike(sender.display_name, '*barracuda*')
or strings.ilevenshtein(sender.display_name, 'barracuda') <= 1
or strings.ilike(sender.email.domain.domain, '*barracuda*')
)
and sender.email.domain.root_domain not in (
'barracuda.com',
'barracudamsp.com',
'barracudanetworks.com',
'netsuite.com',
// hockey team
'sharkssports.net',
'sjbarracuda.com',
// Barracuda Barcatering
'barracuda-barcatering.de',
// Barracuda Events Team
'worldspan.co.uk',
// Barracudas Day Camps
'barracudas.co.uk'
)
and (
profile.by_sender().prevalence in ("new", "outlier")
or (
profile.by_sender().any_messages_malicious_or_spam
and not profile.by_sender().any_false_positives
)
)
Playground
Test against your own EMLs or sample data.