Skip to content
Closed
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Service abuse: Adobe Behance gallery with suspicious redirect"
description: "Detects messages containing a single Behance gallery link where the display URL shows Behance but the actual destination redirects elsewhere, indicating potential abuse of Adobe's Behance platform for malicious redirects."
type: "rule"
severity: "medium"
source: |
type.inbound
and length(body.links) > 0
and any(body.links,
.display_url.domain.root_domain == "behance.net"
and strings.contains(.display_url.path, '/gallery')
)
and length(filter(body.links, .href_url.domain.root_domain == "behance.net")) == 1

attack_types:
- "Credential Phishing"
- "Malware/Ransomware"
tactics_and_techniques:
- "Open redirect"
- "Evasion"
detection_methods:
- "URL analysis"
- "Sender analysis"
id: "5dfb387f-7b98-5f07-b68b-1652f5b698db"