-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…exploitation new: CVE-2024-50623 Exploitation Attempt - Cleo update: Webshell Detection With Command Line Keywords - Add suspicious powershell commandline keywords --------- Co-authored-by: Nasreddine Bencherchali <[email protected]>
- Loading branch information
Showing
2 changed files
with
47 additions
and
2 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...ng-threats/2024/Exploits/CVE-2024-50623/proc_creation_win_exploit_cve_2024_50623_cleo.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
title: CVE-2024-50623 Exploitation Attempt - Cleo | ||
id: f007b877-02e3-45b7-8501-1b78c2864029 | ||
status: experimental | ||
description: | | ||
Detects exploitation attempt of Cleo's CVE-2024-50623 by looking for a "cmd.exe" process spawning from the Celo software suite with suspicious Powershell commandline. | ||
references: | ||
- https://www.huntress.com/blog/threat-advisory-oh-no-cleo-cleo-software-actively-being-exploited-in-the-wild | ||
author: Tanner Filip, Austin Worline, Chad Hudson, Matt Anderson | ||
date: 2024-12-09 | ||
tags: | ||
- attack.execution | ||
- attack.t1190 | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
selection: | ||
ParentImage|endswith: '\javaw.exe' | ||
ParentCommandLine|contains: | ||
- 'Harmony' | ||
- 'lexicom' | ||
- 'VersaLex' | ||
- 'VLTrader' | ||
Image|endswith: '\cmd.exe' | ||
CommandLine|contains: | ||
- 'powershell' | ||
- ' -enc ' | ||
- ' -EncodedCommand' | ||
- '.Download' | ||
condition: selection | ||
falsepositives: | ||
- Unlikely | ||
level: high |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters