-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Add more keys concerned with lsa ppl protection #5399
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
base: master
Are you sure you want to change the base?
Conversation
- 'd ' | ||
- 'v ' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not keep to /
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because "-" can be also used instead of /
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's what the |windash
modifier is for. --> please add them back and use |windash
rules/windows/process_creation/proc_creation_win_reg_lsa_ppl_protection_disabled.yml
Outdated
Show resolved
Hide resolved
- 'd ' | ||
- 'v ' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
that's what the |windash
modifier is for. --> please add them back and use |windash
filter: | ||
CommandLine|contains: | ||
- "01" | ||
- "02" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is filtered here? Can you give an example? (Is it a main or optional filter?)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When modifying the registry using the reg command, you can pass a value using either of the following formats:
/d 0 /d 00000000
For example:
The intention of rule is to catch this commandline
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "RunAsPPL" /t REG_DWORD /d "0"
But, This means the rule will be triggered if the value is set like this:
reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "RunAsPPL" /t REG_DWORD /d "00000001"
or similarly with other non-zero DWORD values like "00000002".
Co-authored-by: phantinuss <[email protected]>
Summary of the Pull Request
Add more keys concerned with lsa ppl protection
Changelog
update: LSA PPL Protection Disabled Via Reg.EXE - Add more keys regarding LSA PPL
Example Log Event
Fixed Issues
SigmaHQ Rule Creation Conventions