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
6 changes: 3 additions & 3 deletions detection-rules/link_credential_phishing_cloud_service.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: "Link: Cloud service with credential theft language"
description: "Detects messages impersonating cloud services that contain high-confidence credential theft language and file sharing topics. The message starts with 'Cloud' or a cloud emoji, contains links to external domains not matching the sender's domain, and lacks recipient identification entities."
name: "Impersonation Link: Cloud branding service with credential theft language"
description: "Detects messages impersonating cloud services that contain high-confidence credential theft language and file sharing topics. The message starts with 'Cloud' or a cloud emoji or Cloud+ text, contains links to external domains not matching the sender's domain, and lacks recipient identification entities."
type: "rule"
severity: "medium"
source: |
type.inbound
and (
any([body.current_thread.text, body.html.inner_text],
strings.starts_with(., 'Cloud')
strings.starts_with(., 'Cloud') or strings.icontains(., "Cloud+")
)
// cloud emoji
or regex.contains(body.current_thread.text, '^\x{2601}')
Expand Down