Skip to content
Open
Changes from 1 commit
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 @@ -17,7 +17,8 @@ source: |
"storage.{0,50}details",
"storage.{0,50}quot",
"(?:mailbox|cloud|account).{0,50}disabled",
"(?:email|cloud|total).{0,50}storage"
"(?:email|cloud|total).{0,50}storage",
"(?:account|cloud).{0,50}(?:suspended?|at risk)"
)
and not strings.ilike(beta.ocr(file.message_screenshot()).text, "*free plan*")
and (
Expand All @@ -31,6 +32,22 @@ source: |
or .href_url.domain.root_domain == "beehiiv.com"
)
)
or (
(
not headers.auth_summary.spf.pass
or (
headers.return_path.domain.root_domain is not null
and headers.return_path.domain.root_domain != sender.email.domain.root_domain
)
)
// negate security training platforms
and headers.return_path.domain.root_domain not in~ (
"knowbe4.com",
"proofpoint.com",
"cofense.com",
"infosec.com"
)
)
)

// and the sender is not from high trust sender root domains
Expand Down
Loading