Skip to content

Commit e583eb1

Browse files
[PR #3821] added rule: Link: URL shortener with copy-paste instructions and credential theft language
1 parent 943ba52 commit e583eb1

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "Link: URL shortener with copy-paste instructions and credential theft language"
2+
description: "Detects messages containing only URL shorteners with copy-paste instructions and high-confidence credential theft language, typically used to evade URL analysis by requiring manual URL entry."
3+
type: "rule"
4+
severity: "low"
5+
source: |
6+
type.inbound
7+
and length(body.current_thread.links) > 0
8+
and all(body.current_thread.links,
9+
.href_url.domain.root_domain in $url_shorteners
10+
)
11+
and (
12+
strings.icontains(body.current_thread.text, 'copy')
13+
and (
14+
strings.icontains(body.current_thread.text, 'pasting')
15+
or strings.icontains(body.current_thread.text, 'paste')
16+
)
17+
)
18+
and any(ml.nlu_classifier(body.current_thread.text).intents,
19+
.name == 'cred_theft' and .confidence == 'high'
20+
)
21+
22+
attack_types:
23+
- "Credential Phishing"
24+
tactics_and_techniques:
25+
- "Evasion"
26+
- "Social engineering"
27+
detection_methods:
28+
- "Content analysis"
29+
- "Natural Language Understanding"
30+
- "URL analysis"
31+
id: "7f48cc7d-8273-5f27-abdc-75959c317959"
32+
og_id: "a0a2c573-3686-590e-8715-fc4a32202c92"
33+
testing_pr: 3821
34+
testing_sha: 36c281258827da8100ba6f1b51171f8b9271ccf9

0 commit comments

Comments
 (0)