Skip to content
Open
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
26 changes: 26 additions & 0 deletions detection-rules/service_abuse_sendgrid_free_email_provider.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Service abuse: Free provider with SendGrid routing"
description: "Message From header includes a free email provider domain but is routed through SendGrid infrastructure, indicating potential service abuse for delivery evasion."
type: "rule"
severity: "medium"
source: |
type.inbound
and sender.email.domain.domain in $free_email_providers
and any(headers.domains, .root_domain == "sendgrid.net")
and not any(ml.nlu_classifier(body.current_thread.text).intents,
.name == "benign"
)
and not any(ml.nlu_classifier(body.current_thread.text).topics,
.name == "Bounce Back and Delivery Failure Notifications"
)

tags:
- "Attack surface reduction"
attack_types:
- "Credential Phishing"
tactics_and_techniques:
- "Free email provider"
- "Evasion"
detection_methods:
- "Header analysis"
- "Sender analysis"
id: "3079cacb-2ab9-533a-bced-59545bd54d63"
Loading