Skip to content

Commit 75b006c

Browse files
[Test Rules] [PR #4388] added rule: Link: URL path containing /moni/index
1 parent 080eceb commit 75b006c

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: "Link: URL path containing /moni/index"
2+
description: "Detects inbound messages containing links to '/moni/index.' paths, either directly in the URL path or within query parameters. This pattern has been observed in the wild leading to credential phishing"
3+
type: "rule"
4+
severity: "high"
5+
source: |
6+
type.inbound
7+
and any(body.current_thread.links,
8+
(
9+
regex.icontains(.href_url.path, '\/moni\/index\.')
10+
or any(values(.href_url.query_params_decoded),
11+
any(., regex.icontains(., '\/moni\/index\.'))
12+
)
13+
)
14+
)
15+
attack_types:
16+
- "Credential Phishing"
17+
tactics_and_techniques:
18+
- "Open redirect"
19+
- "Evasion"
20+
detection_methods:
21+
- "URL analysis"
22+
id: "16e95f68-4d05-5d86-87ed-68d9ea024e6e"
23+
og_id: "9d8aa316-64c8-5d48-89be-06cc56eaa1f8"
24+
testing_pr: 4388
25+
testing_sha: d7ee9d8b23b932f33a0a5518606a238e05a6aa37

0 commit comments

Comments
 (0)