Skip to content

Commit 2dc831c

Browse files
[PR sublime-security#3720] added rule: PR# 3720 - Headers: UTF-8 base64 encoded From header
1 parent b4c763a commit 2dc831c

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: "PR# 3720 - Headers: UTF-8 base64 encoded From header"
2+
description: "Message contains a From header that has been encoded using UTF-8 base64 encoding, which may be used to obfuscate sender information or bypass security filters."
3+
type: "rule"
4+
severity: "medium"
5+
source: |
6+
type.inbound
7+
and any(headers.hops,
8+
any(filter(.fields, .name == "From"),
9+
strings.istarts_with(.value, "-=?utf-8?b?")
10+
)
11+
)
12+
tags:
13+
- "Attack surface reduction"
14+
- pr_author_MSAdministrator
15+
- created_from_open_prs
16+
- rule_status_added
17+
attack_types:
18+
- "BEC/Fraud"
19+
- "Credential Phishing"
20+
- "Spam"
21+
tactics_and_techniques:
22+
- "Encryption"
23+
- "Evasion"
24+
- "Spoofing"
25+
detection_methods:
26+
- "Header analysis"
27+
- "Sender analysis"
28+
id: "9bfe94d9-9afe-5360-9a53-bd5099e5a5f5"
29+
references:
30+
- https://github.com/sublime-security/sublime-rules/pull/3720

0 commit comments

Comments
 (0)