-
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: Doubleclick open redirect (#864)
Co-authored-by: ID Generator <[email protected]>
- Loading branch information
1 parent
f098c41
commit fc2fb64
Showing
1 changed file
with
28 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,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" |