Skip to content

Commit 9a5f7e2

Browse files
[PR #3616] added rule: Subject and sender display name contain matching 32-character alphanumeric string
1 parent 59ba4ed commit 9a5f7e2

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "Subject and sender display name contain matching 32-character alphanumeric string"
2+
description: "Detects messages where both the subject line and sender display name contain identical 32-character alphanumeric strings, which may indicate automated generation or coordination between these fields for malicious purposes."
3+
type: "rule"
4+
severity: "low"
5+
source: |
6+
type.inbound
7+
and any(regex.extract(subject.subject, '[A-Za-z0-9]{32}'),
8+
any(regex.extract(sender.display_name, '[A-Za-z0-9]{32}'),
9+
..full_match == .full_match
10+
)
11+
)
12+
13+
attack_types:
14+
- "Malware/Ransomware"
15+
- "Credential Phishing"
16+
tactics_and_techniques:
17+
- "Evasion"
18+
- "Social engineering"
19+
detection_methods:
20+
- "Content analysis"
21+
- "Header analysis"
22+
- "Sender analysis"
23+
id: "da5cb864-7ca5-5d52-84af-9f3b4e841197"
24+
og_id: "a8a0c831-b7f7-5534-bc4a-f01ca879a619"
25+
testing_pr: 3616
26+
testing_sha: 038e22f9329645cbf3c3727fe9021865423ebfd8

0 commit comments

Comments
 (0)