Skip to content

Lazagne rule update #5225

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 39 additions & 7 deletions rules/windows/process_creation/proc_creation_win_hktl_lazagne.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,28 +10,54 @@ references:
- https://cloud.google.com/blog/topics/threat-intelligence/alphv-ransomware-backup/
- https://securelist.com/defttorero-tactics-techniques-and-procedures/107610/
- https://github.com/CyberMonitor/APT_CyberCriminal_Campagin_Collections/raw/800c0e06571993a54e39571cf27fd474dcc5c0bc/2017/2017.11.14.Muddying_the_Water/muddying-the-water-targeted-attacks.pdf
author: Nasreddine Bencherchali (Nextron Systems)
author: Nasreddine Bencherchali (Nextron Systems), Swachchhanda Shrawan Poudel (Nextron Systems)
date: 2024-06-24
modified: 2024-08-16
modified: 2025-03-06
tags:
- attack.credential-access
logsource:
product: windows
category: process_creation
detection:
selection_img:
Image|endswith: '\lazagne.exe'
selection_clionly:
selection_metadata:
- Image|endswith: '\lazagne.exe'
- Hashes|contains:
- 'IMPHASH=ba5546933531fafa869b1f86a4e2a959'
- 'IMPHASH=7aa1951517b3b8d38b12f874b66196c9'
- 'IMPHASH=be10bb45cef8dcc6869b921dd20884ae'
- 'IMPHASH=4e3e7ce958acceeb80e70eeb7d75870e'
- 'IMPHASH=fc40519af20116c903e3ff836e366e39'
- 'IMPHASH=1975641ebd67bc0f49282a7b8555b7b2'
- 'IMPHASH=468ad8de9dcf3ce7a0becc5916ec6adb'
- 'IMPHASH=e5d81cf6a49d9472d6de8c1764efdfb4'
- 'IMPHASH=b87afca7a1175b7eb49b7c1eb6d58adf'
selection_img_cli:
# Note: This selection can be prone to FP. An initial baseline is required
Image|contains:
- ':\PerfLogs\'
- ':\ProgramData\'
- ':\Temp\'
- ':\Tmp\'
- ':\Users\Public\'
- ':\Windows\Temp\'
- '\$Recycle.bin'
- '\AppData\'
- '\Desktop\'
- '\Downloads\'
- '\Users\Public\'
- '\Favorites\'
- '\Links\'
- '\Music\'
- '\Photos\'
- '\Pictures\'
- '\Saved Games\'
- '\Searches\'
- '\Users\Contacts\'
- '\Users\Default\'
- '\Users\Searches\'
- '\Videos\'
- '\Windows\addins\'
- '\Windows\Fonts\'
- '\Windows\IME\'
CommandLine|endswith:
- '.exe all'
- '.exe browsers'
Expand Down Expand Up @@ -127,7 +153,13 @@ detection:
- '-windows'
- '-winscp'
- '-wsl'
condition: selection_img or selection_clionly or (selection_cli_modules and selection_cli_options)
filter_cli_legitpath:
Image|startswith:
- 'C:\Windows\System32\'
- 'C:\Windows\SysWOW64\'
- 'C:\Program Files\'
- 'C:\Program Files (x86)\'
condition: selection_metadata or selection_img_cli or (all of selection_cli_* and not filter_cli_legitpath)
falsepositives:
- Some false positive is expected from tools with similar command line flags.
# Note: Increase the level to "high" after an initial baseline
Expand Down
Loading