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

New rule: link_freefile_freemail_nlu.yml #861

Merged
merged 6 commits into from
Nov 16, 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
38 changes: 38 additions & 0 deletions detection-rules/link_freefile_freemail_nlu.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Link: Free file host from freemail sender with NLU intent"
description: "Detects free file host links sent by freemail senders with a short body and NLU indicators."
type: "rule"
severity: "medium"
source: |
type.inbound

// short body
and length(body.plain.raw) < 500

// NLU intent
and (
any(ml.nlu_classifier(body.plain.raw).intents, .name != "benign")
and length(ml.nlu_classifier(body.plain.raw).intents) > 0
)

// free file host link
and any(body.links, .href_url.domain.domain in~ $free_file_hosts)

// freemail sender
and sender.email.domain.root_domain in $free_email_providers

and (
not profile.by_sender().any_false_positives
and not profile.by_sender().solicited
)
attack_types:
- "Credential Phishing"
tactics_and_techniques:
- "Free email provider"
- "Free file host"
- "Social engineering"
detection_methods:
- "Content analysis"
- "Natural Language Understanding"
- "Sender analysis"
- "URL analysis"
id: "569817fe-96b5-5c1d-96dc-30cd1cb9fd16"
Loading