Skip to content

Commit 71ae004

Browse files
ruppdenasbenchthomaspatzke
authored
Merge PR SigmaHQ#4794 from @ruppde - Potential Exploitation of CVE-2024-3094
new: Potential Exploitation of CVE-2024-3094 - Suspicious SSH Child Process --------- Co-authored-by: nasbench <[email protected]> Co-authored-by: Thomas Patzke <[email protected]>
1 parent 3e389b1 commit 71ae004

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
title: Potential Exploitation of CVE-2024-3094 - Suspicious SSH Child Process
2+
id: 9aa27839-e8ba-4d7a-ac1a-746c22c3d1e5
3+
status: experimental
4+
description: |
5+
Detects potentially suspicious child process of SSH process (sshd) with a specific execution user. This could be a sign of potential exploitation of CVE-2024-3094.
6+
references:
7+
- https://github.com/amlweems/xzbot?tab=readme-ov-file#backdoor-demo
8+
author: Arnim Rupp, Nasreddine Bencherchali, Thomas Patzke
9+
date: 2024/04/01
10+
tags:
11+
- attack.execution
12+
- cve.2024.3094
13+
logsource:
14+
category: process_creation
15+
product: linux
16+
detection:
17+
selection_1:
18+
ParentImage|endswith: '/sshd'
19+
CommandLine|startswith:
20+
- 'bash -c'
21+
- 'sh -c'
22+
User: 'root'
23+
selection_2:
24+
ParentImage|endswith: '/sshd'
25+
Image|endswith: '/sshd'
26+
User: 'sshd'
27+
condition: 1 of selection_*
28+
falsepositives:
29+
- Administrative activity directly with root authentication might trigger selection_1 if it's unnecessarily prefixed with "sh -c" or "bash -c"
30+
level: high

0 commit comments

Comments
 (0)