Skip to content

Commit 3a346d5

Browse files
[PR #3720] added rule: Headers: UTF-8 base64 encoded From header
1 parent c4bcf6a commit 3a346d5

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "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+
attack_types:
15+
- "BEC/Fraud"
16+
- "Credential Phishing"
17+
- "Spam"
18+
tactics_and_techniques:
19+
- "Encryption"
20+
- "Evasion"
21+
- "Spoofing"
22+
detection_methods:
23+
- "Header analysis"
24+
- "Sender analysis"
25+
id: "9bfe94d9-9afe-5360-9a53-bd5099e5a5f5"
26+
og_id: "601c7b98-c804-58f8-95b2-c02160c8d97b"
27+
testing_pr: 3720
28+
testing_sha: feec33149aee6585b2d891bf885ff6e63079080f

0 commit comments

Comments
 (0)