-
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.
Create abuse_docsend_unsolicited_reply-to.yml (#2165)
Co-authored-by: ID Generator <[email protected]> Co-authored-by: Aiden Mitchell <[email protected]>
- Loading branch information
1 parent
bf237ee
commit e9078db
Showing
1 changed file
with
56 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,56 @@ | ||
name: "Service Abuse: DocSend Share From an Unsolicited Reply-To Address" | ||
description: "DocSend shares which contain a reply-to address or domain that has not been previously observed by the recipient organization." | ||
type: "rule" | ||
severity: "high" | ||
source: | | ||
type.inbound | ||
// Legitimate DocSend sending infratructure | ||
and sender.email.email == "[email protected]" | ||
and headers.auth_summary.spf.pass | ||
and headers.auth_summary.dmarc.pass | ||
// the message needs to have a reply-to address | ||
and length(headers.reply_to) > 0 | ||
// reply-to email address has never been sent an email by the org | ||
and not ( | ||
any(headers.reply_to, .email.email in $recipient_emails) | ||
// if the reply-to email address is NOT in free_email_providers, check the domain in recipient_domains | ||
or any(filter(headers.reply_to, | ||
// filter the list to only emails that are not in free_email_providers | ||
( | ||
.email.domain.domain not in $free_email_providers | ||
or .email.domain.root_domain not in $free_email_providers | ||
) | ||
), | ||
.email.domain.domain in $recipient_domains | ||
) | ||
) | ||
// reply-to address has never sent an email to the org | ||
and not ( | ||
any(headers.reply_to, .email.email in $sender_emails) | ||
// if the reply-to address is NOT in free_email_providers, check the domain in sender_domains | ||
or any(filter(headers.reply_to, | ||
// filter the list to only emails that are not in free_email_providers | ||
( | ||
.email.domain.domain not in $free_email_providers | ||
or .email.domain.root_domain not in $free_email_providers | ||
) | ||
), | ||
.email.domain.domain in $sender_domains | ||
) | ||
) | ||
tags: | ||
- "Attack surface reduction" | ||
attack_types: | ||
- "Credential Phishing" | ||
tactics_and_techniques: | ||
- "Evasion" | ||
- "Free file host" | ||
- "Social engineering" | ||
detection_methods: | ||
- "Content analysis" | ||
- "Header analysis" | ||
- "Sender analysis" | ||
id: "b377e64c-21bd-5040-86ec-534e545a42db" |