Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create open_redirect_meta_youtube.yml #2272

Merged
merged 8 commits into from
Jan 15, 2025
Merged
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
21 changes: 21 additions & 0 deletions detection-rules/open_redirect_meta_youtube.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Open Redirect: Meta --> YouTube Redirection Chain"
description: |
Message contains use of a redirect chain which involves Meta and YouTube. This has been exploited in the wild.
type: "rule"
severity: "medium"
source: |
type.inbound
and any(body.links,
.href_url.domain.domain == "l.work.meta.com"
// the redirect field
and strings.icontains(.href_url.query_params, "u=")
and regex.icontains(.href_url.query_params, 'u=(?:https?)?(?:(?:%3a|\:)?(?:\/|%2f){2})?youtube\.com[^\&]*\/+logout.*continue=')
)
attack_types:
- "Credential Phishing"
tactics_and_techniques:
- "Open redirect"
detection_methods:
- "Sender analysis"
- "URL analysis"
id: "f217fd10-48fe-553a-8e63-4da9fb3fbc64"
Loading