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 fix: Update link_credential_phishing_intent_and_other_indicators.yml #790

Merged
merged 2 commits into from
Sep 18, 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
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,8 @@ source: |
// this is common in link tracking, both for
// benign marketing traffic but also attackers
any(recipients.to,
strings.icontains(..href_url.url, .email.local_part)
.email.domain.valid
and strings.icontains(..href_url.url, .email.local_part)
and strings.icontains(..href_url.url, .email.domain.domain)
)
)
Expand All @@ -290,12 +291,12 @@ source: |
and (
// freemail providers should never be sending this type of email
sender.email.domain.domain in $free_email_providers

// if not freemail, it's suspicious if the sender's root domain
// doesn't match any links in the body
or all(body.links, .href_url.domain.root_domain != sender.email.domain.root_domain)
)

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