Skip to content

Commit

Permalink
New Rule: Doubleclick open redirect (#864)
Browse files Browse the repository at this point in the history
Co-authored-by: ID Generator <[email protected]>
  • Loading branch information
morriscode and ID Generator authored Jan 22, 2024
1 parent f098c41 commit fc2fb64
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions detection-rules/open_redirect_doubleclick.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Open redirect: Doubleclick.net"
description: Doubleclick.net link leveraging an open redirect from a new or outlier sender.
type: "rule"
severity: "medium"
source: |
type.inbound
and length(body.links) < 10
and any(body.links,
.href_url.domain.root_domain == "doubleclick.net"
and .href_url.path == "/aclk"
and regex.icontains(.href_url.query_params, "&adurl=[a-zA-Z]{3,10}://.*$")
)
and (
profile.by_sender().prevalence in ("new", "outlier")
or (
profile.by_sender().any_messages_malicious_or_spam
and not profile.by_sender().any_false_positives
)
)
attack_types:
- "Credential Phishing"
- "Malware/Ransomware"
tactics_and_techniques:
- "Open redirect"
detection_methods:
- "Sender analysis"
- "URL analysis"
id: "9c620146-2e0e-5cbb-96fc-fea27236117c"

0 comments on commit fc2fb64

Please sign in to comment.