Skip to content

Commit 2c618d4

Browse files
[PR #3027] changed rule: Link: Multiple HTTP protocols in single URL
1 parent 007bb2c commit 2c618d4

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: "Link: Multiple HTTP protocols in single URL"
2+
description: "Detects messages containing links with 5 or more HTTP protocol declarations within a single URL, indicating potential URL manipulation or obfuscation techniques."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and 0 < length(body.current_thread.links) < 10
8+
and any(body.current_thread.links, regex.icount(.href_url.url, 'http(s)?(%)?[^a-z]') >= 5 and .visible)
9+
tags:
10+
- "Attack surface reduction"
11+
attack_types:
12+
- "Credential Phishing"
13+
- "Malware/Ransomware"
14+
tactics_and_techniques:
15+
- "Evasion"
16+
detection_methods:
17+
- "Content analysis"
18+
- "URL analysis"
19+
id: "dea82f37-8cfd-5233-9deb-bc436aba8182"
20+
og_id: "92f9d241-ebd2-53b8-9c67-6f9ec3e263b8"
21+
testing_pr: 3027
22+
testing_sha: e460c3468bf1452d7ead1d4c28082a53831cd909

0 commit comments

Comments
 (0)