Skip to content
Open
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,4 +1,4 @@
name: "Spam: Fake photo share"
name: "Spam: Photo/image lure"
description: 'Message contains pretexting language about sharing photos ("found these photos and thought you''d like them", "remember these photos?") and a link with a newly registered domain. Fake threads and plain text bodies have been seen in the wild, indicating active evasion techniques.'
type: "rule"
severity: "low"
Expand Down Expand Up @@ -66,14 +66,19 @@ source: |
)
or (
length(body.current_thread.text) < 500
and strings.ilike(body.current_thread.text,
"*picture*",
"*photo*",
"*image*",
"*sad news*",
"*sad announcement*",
"*sad update*",
"*new pics*"
and (
strings.ilike(body.current_thread.text,
"*picture*",
"*photo*",
"*image*",
"*sad news*",
"*sad announcement*",
"*sad update*",
"*new pics*"
)
or regex.icontains(body.current_thread.text,
'\b(photo|pics?|picture)\b'
)
)
)
)
Expand Down
Loading