Skip to content

Create link_zoom_docs_direct.yml #2669

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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
26 changes: 26 additions & 0 deletions detection-rules/link_zoom_docs_direct.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Link: Direct link to Zoom Docs from Non-Zoom Sender"
description: "Message includes a single link to Zoom Docs, with no other links to zoom and originates from a sender outside the Zoom organization "
type: "rule"
severity: "medium"
source: |
type.inbound
// contains a link to zoom docs
and any(body.links, .href_url.domain.domain == "docs.zoom.us")
// is the only link to zoom
and length(filter(body.links, .href_url.domain.root_domain == "zoom.us")) == 1
// not from zoom.us
and not (
sender.email.domain.root_domain == "zoom.us"
and headers.auth_summary.dmarc.pass
)

attack_types:
- "Credential Phishing"
tactics_and_techniques:
- "Social engineering"
- "Impersonation: Brand"
detection_methods:
- "Header analysis"
- "URL analysis"
- "Sender analysis"
id: "5c6362db-62e0-56c9-b988-ad17a2738a47"