Skip to content

Commit c2b9c8b

Browse files
[Shared Samples] [PR #4701] added rule: PR# 4701 - Body: Suspicious table template fingerprint
1 parent e271256 commit c2b9c8b

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "PR# 4701 - Body: Suspicious table template fingerprint"
2+
description: "Detects messages matching a specific HTML template fingerprint characterized by a table containing both 'Important' and 'Company' text nodes. This pattern is associated with a known malicious message template used to deceive recipients."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
// table template fingerprint — any background color
8+
and any(html.xpath(body.html, '//td[contains(@style, "background-color")]').nodes,
9+
.display_text == "Important"
10+
)
11+
and any(html.xpath(body.html, '//td[contains(@style, "background-color")]').nodes,
12+
.display_text == "Company"
13+
)
14+
attack_types:
15+
- "Credential Phishing"
16+
tactics_and_techniques:
17+
- "Social engineering"
18+
- "Evasion"
19+
detection_methods:
20+
- "HTML analysis"
21+
- "Content analysis"
22+
id: "7e88995c-080e-54c7-8ff6-7b8541a34cef"
23+
tags:
24+
- created_from_open_prs
25+
- rule_status_added
26+
- pr_author_IndiaAce
27+
references:
28+
- https://github.com/sublime-security/sublime-rules/pull/4701

0 commit comments

Comments
 (0)