mirror of
https://github.com/vee1e/capa-rules.git
synced 2026-09-01 19:07:15 +00:00
Add rule for detecting hiding shutdown actions (#935)
* Add initial rule for hiding shutdown actions Signed-off-by: Still Hsu <dev@stillu.cc> --------- Signed-off-by: Still Hsu <dev@stillu.cc> Co-authored-by: Moritz <mr-tz@users.noreply.github.com>
This commit is contained in:
parent
1fd0d8e141
commit
9da73becdb
1 changed files with 31 additions and 0 deletions
31
host-interaction/os/hide-shutdown-actions-via-policy.yml
Normal file
31
host-interaction/os/hide-shutdown-actions-via-policy.yml
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
rule:
|
||||
meta:
|
||||
name: hide shutdown actions via policy
|
||||
namespace: host-interaction/os
|
||||
authors:
|
||||
- still@teamt5.org
|
||||
scopes:
|
||||
static: function
|
||||
dynamic: call
|
||||
att&ck:
|
||||
- Defense Evasion::Modify Registry [T1112]
|
||||
references:
|
||||
- https://securelist.com/mallox-ransomware/113529/
|
||||
examples:
|
||||
- a6594d9550d56ddeaac8b3140821e698eefb7163ba29f0119c2ef19beb6040b0:0x14000b47f
|
||||
features:
|
||||
- and:
|
||||
- optional:
|
||||
- match: create or open registry key
|
||||
- or:
|
||||
- and:
|
||||
- string: "/Policies/i"
|
||||
- or:
|
||||
- string: "/ShutdownWithoutLogon/i"
|
||||
- string: "/HidePowerOptions/i"
|
||||
- and:
|
||||
- string: "/PolicyManager/i"
|
||||
- or:
|
||||
- string: "/HideRestart/i"
|
||||
- string: "/HideShutDown/i"
|
||||
- string: "/HideSignOut/i"
|
||||
Loading…
Add table
Add a link
Reference in a new issue