-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sigma Rule Update (2024-12-15 20:14:42) (#793)
Co-authored-by: hach1yon <[email protected]>
- Loading branch information
1 parent
afcb844
commit 548b46c
Showing
5 changed files
with
105 additions
and
38 deletions.
There are no files selected for viewing
34 changes: 0 additions & 34 deletions
34
sigma/builtin/powershell/powershell_classic/posh_pc_xor_commandline.yml
This file was deleted.
Oops, something went wrong.
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
36 changes: 36 additions & 0 deletions
36
sigma/builtin/threat-hunting/powershell/powershell_classic/posh_pc_bxor_operator_usage.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,36 @@ | ||
title: bXOR Operator Usage In PowerShell Command Line - PowerShell Classic | ||
id: 8427e501-af53-a1ba-41a5-0b2d83e199fb | ||
related: | ||
- id: 812837bb-b17f-45e9-8bd0-0ec35d2e3bd6 | ||
type: derived | ||
status: test | ||
description: | | ||
Detects powershell execution with that make use of to the bxor (Bitwise XOR). | ||
Attackers might use as an alternative obfuscation method to Base64 encoded commands. | ||
Investigate the CommandLine and process tree to determine if the activity is malicious. | ||
references: | ||
- https://speakerdeck.com/heirhabarov/hunting-for-powershell-abuse?slide=46 | ||
- https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_arithmetic_operators?view=powershell-5.1 | ||
author: Teymur Kheirkhabarov, Harish Segar | ||
date: 2020-06-29 | ||
modified: 2024-12-11 | ||
tags: | ||
- attack.execution | ||
- attack.t1059.001 | ||
- detection.threat-hunting | ||
logsource: | ||
product: windows | ||
category: ps_classic_start | ||
detection: | ||
ps_classic_start: | ||
EventID: 400 | ||
Channel: Windows PowerShell | ||
selection: | ||
Data|contains|all: | ||
- HostName=ConsoleHost | ||
- ' -bxor ' | ||
condition: ps_classic_start and selection | ||
falsepositives: | ||
- Unknown | ||
level: low | ||
ruletype: Sigma |
41 changes: 41 additions & 0 deletions
41
...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,41 @@ | ||
title: CVE-2024-50623 Exploitation Attempt - Cleo | ||
id: 9187bdda-948f-a7ce-464d-88216c65bb14 | ||
related: | ||
- id: f007b877-02e3-45b7-8501-1b78c2864029 | ||
type: derived | ||
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 | ||
- sysmon | ||
logsource: | ||
category: process_creation | ||
product: windows | ||
detection: | ||
process_creation: | ||
EventID: 1 | ||
Channel: Microsoft-Windows-Sysmon/Operational | ||
selection: | ||
ParentImage|endswith: \javaw.exe | ||
ParentCommandLine|contains: | ||
- Harmony | ||
- lexicom | ||
- VersaLex | ||
- VLTrader | ||
Image|endswith: \cmd.exe | ||
CommandLine|contains: | ||
- powershell | ||
- ' -enc ' | ||
- ' -EncodedCommand' | ||
- .Download | ||
condition: process_creation and selection | ||
falsepositives: | ||
- Unlikely | ||
level: high | ||
ruletype: Sigma |
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