Skip to content
Closed
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
Expand Up @@ -47,7 +47,7 @@ source: |
and 20 < length(body.current_thread.text) < 500
// service offering keywords
and regex.icontains(strings.replace_confusables(body.current_thread.text),
"(?:screenshot|error list|plan|quote|rank|professional|price|mistake|visibility|improvement|review|emailed.{0,10}more details)"
"(?:available|screenshot|error list|plan|quote|rank|professional|price|mistake|visibility|improvement|review|emailed.{0,10}more details)"
)
// generic greeting
and regex.icontains(strings.replace_confusables(body.current_thread.text),
Expand All @@ -61,7 +61,11 @@ source: |
and regex.icontains(strings.replace_confusables(body.current_thread.text),
"(?:site|website|page)"
)
and regex.icontains(strings.replace_confusables(body.current_thread.text),
'(mail\.|mx|\.u)?\.?@?(aol|yahoo|hotmail|google|gmail|googlemail)\.com'
)
)
or any(body.links, regex.icontains(.display_text, '\.?@?(hotmail)\.com'))
// Single thread with unsubscribe link or $org_domains link
or (
length(body.links) <= 3
Expand Down Expand Up @@ -115,7 +119,6 @@ source: |
)
)
)

tags:
- "Attack surface reduction"
attack_types:
Expand Down
Loading