-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New rule: link_freefile_freemail_nlu.yml (#861)
Co-authored-by: ID Generator <[email protected]> Co-authored-by: Sam Scholten <[email protected]>
- Loading branch information
1 parent
db8f6f1
commit 30f09bd
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |