Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FP Tune: Update link_credential_phishing_secure_message.yml #800

Merged
merged 1 commit into from
Sep 20, 2023
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
14 changes: 8 additions & 6 deletions detection-rules/link_credential_phishing_secure_message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,26 +8,28 @@ source: |
and any(ml.nlu_classifier(body.current_thread.text).intents,
.name == "cred_theft" and .confidence == "high"
)

// ----- other suspicious signals here -----
and strings.icontains(body.html.display_text, "secure message")

// todo: automated display name / human local part
// todo: suspicious link (unfurl click trackers)

// ----------

// has at least 1 link
and length(body.links) > 0

// negate legitimate message senders
and (
sender.email.domain.root_domain not in ("protectedtrust.com")
and any(body.links,
.href_url.domain.root_domain != sender.email.domain.root_domain
)
// Negate known secure mailer(s)
and not all(body.links, .href_url.domain.root_domain in ("mimecast.com"))
)

// first-time sender
and (
(
Expand Down
Loading