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
38 changes: 38 additions & 0 deletions detection-rules/service_abuse_datadog_alert.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: "Service abuse: Suspicious Datadog alert"
description: "Message from alert@dtdg.co containing links to URL shorteners or self-service creation platforms."
type: "rule"
severity: "high"
source: |
type.inbound
and sender.email.email == "alert@dtdg.co"
// links pointing to free file hosts or url shorteners
and (
any(body.links,
(
.href_url.domain.root_domain in $url_shorteners
or .href_url.domain.root_domain in $self_service_creation_platform_domains
)
or (
.href_url.domain.domain in $url_shorteners
or .href_url.domain.domain in $self_service_creation_platform_domains
)
// account for rewritten links
or (
any(.href_url.query_params_decoded["domain"],
strings.parse_domain(.).domain in $url_shorteners
or strings.parse_domain(.).domain in $self_service_creation_platform_domains
)
)
)
)

attack_types:
- "Credential Phishing"
- "Malware/Ransomware"
tactics_and_techniques:
- "Evasion"
- "Free subdomain host"
detection_methods:
- "Sender analysis"
- "URL analysis"
id: "0808411b-5765-5bef-ad52-5d55bd0f36dd"