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 asr_gated_dropbox_link.yml #887

Closed
wants to merge 3 commits into from
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
31 changes: 31 additions & 0 deletions detection-rules/asr_gated_dropbox_link.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: "Attack surface reduction: Secured Dropbox share link"
description: "File shared through Dropbox requires authentication to view. Enable this rule if this behaviour is unusual in your environment."
type: "rule"
severity: "low"
source: |
type.inbound
and sender.email.email == "[email protected]"
and any(distinct(headers.hops, .authentication_results.dmarc is not null),
not strings.ilike(.authentication_results.dmarc, "*fail")
)
and strings.ilike(subject.subject, "*shared*with you*")
and any(body.links,
.href_url.domain.root_domain == "dropbox.com"
and strings.icontains(beta.linkanalysis(.).final_dom.display_text,
"we need to confirm your identity"
)
)
tags:
- "Attack surface reduction"
attack_types:
- "Credential Phishing"
- "Malware/Ransomware"
tactics_and_techniques:
- "Free file host"
- "Out of band pivot"
- "Social engineering"
detection_methods:
- "Header analysis"
- "HTML analysis"
- "URL analysis"
id: "7b4e5616-8ca5-5926-90a6-4c7aedf5ab9f"
Loading