Skip to content

Commit 1fbfcfc

Browse files
[Test Rules] [PR #4350] added rule: Observed IOC: Malicious domains in body links
1 parent f0ad253 commit 1fbfcfc

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: "Observed IOC: Malicious domains in body links"
2+
description: "Detects inbound messages containing links to known malicious domains in the message body. IOC list is automatically managed and hashed by the IOC pipeline from the private threat intelligence feed."
3+
type: "rule"
4+
severity: "high"
5+
source: |
6+
// AUTO-GENERATED IOC LIST - DO NOT EDIT MANUALLY
7+
// Managed by automated IOC system
8+
type.inbound
9+
and any(body.current_thread.links,
10+
hash.sha256(.href_url.domain.domain) in (
11+
'358871a6a4b575d4943918cc1cb7cfc82b6c93eb7b926bee522bc97b013f8710', // Observed malicious domain in message body links
12+
'96cf4453229b1cdcc1fd94d07260c037a57b999ea93d6b6f360f655305a4ad86' // Observed malicious domain in message body links
13+
)
14+
)// END AUTO-GENERATED
15+
attack_types:
16+
- "Credential Phishing"
17+
- "Malware/Ransomware"
18+
tactics_and_techniques:
19+
- "Evasion"
20+
- "Social engineering"
21+
detection_methods:
22+
- "URL analysis"
23+
- "Content analysis"
24+
id: "5240c3fe-f268-5c72-bf42-4d78ddbfeab6"
25+
og_id: "e4f5a6b7-c8d9-4e1f-8a3b-c4d5e6f7a8b9"
26+
testing_pr: 4350
27+
testing_sha: e969e4109eeb42fbb3209493a900e983cfd6a8c2

0 commit comments

Comments
 (0)