Skip to content

Commit

Permalink
Merge PR #4898 from @ruppde - Fix `Potential Exploitation of CVE-2024…
Browse files Browse the repository at this point in the history
…-3094 - Suspicious SSH Child Process`

fix: Potential Exploitation of CVE-2024-3094 - Suspicious SSH Child Process - Remove `selection_2` as it generates tons of false positives.
 
---------

Co-authored-by: nasbench <8741929+nasbench@users.noreply.github.com>
  • Loading branch information
ruppde and nasbench authored Jul 3, 2024
1 parent 651bee3 commit 0511e57
Showing 1 changed file with 4 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,21 @@ references:
- https://github.com/amlweems/xzbot?tab=readme-ov-file#backdoor-demo
author: Arnim Rupp, Nasreddine Bencherchali, Thomas Patzke
date: 2024/04/01
modified: 2024/04/12
modified: 2024/07/03
tags:
- attack.execution
- cve.2024.3094
logsource:
category: process_creation
product: linux
detection:
selection_1:
selection:
ParentImage|endswith: '/sshd'
CommandLine|startswith:
- 'bash -c'
- 'sh -c'
User: 'root'
selection_2:
ParentImage|endswith: '/sshd'
Image|endswith: '/sshd'
User: 'sshd'
CommandLine|contains: 'root'
condition: 1 of selection_*
condition: selection
falsepositives:
- Administrative activity directly with root authentication might trigger selection_1 if it's unnecessarily prefixed with "sh -c" or "bash -c"
- Administrative activity directly with root authentication might trigger this rule if it's unnecessarily prefixed with "sh -c" or "bash -c"
level: high

0 comments on commit 0511e57

Please sign in to comment.