Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Brand Impersonation: Social Security Administration (SSA)"
description: "Detects messages impersonating the Social Security Administration (SSA) that contain links, a suspicious indicator, and are sent from non-government domains by unsolicited or suspicious senders."
name: "Brand impersonation: Social Security Administration"
description: "Detects messages impersonating the Social Security Administration (SSA) through various indicators including display names, subjects, body content, attachments, and HTML titles. The rule identifies SSA references, confusable characters, statement notifications, and credential theft language while excluding legitimate government communications."
type: "rule"
severity: "medium"
source: |
Expand Down Expand Up @@ -59,6 +59,13 @@ source: |
or .inner_text =~ "Social Security Administration"
or .inner_text =~ "Social Security"
)
or (
any(body.links, strings.contains(.href_url.url, 'ssa.gov'))
and strings.icontains(body.current_thread.text,
'download monthly statement'
)
and strings.icontains(body.current_thread.text, 'stay connected')
)
or (
any(ml.nlu_classifier(body.current_thread.text).entities,
.name == "sender" and .text == "Social Security Administration"
Expand Down