Registry Disable System Restore

Detects the modification of the registry to disable a system restore on the computer

Sigma rule (View on GitHub)

 1title: Registry Disable System Restore
 2id: 5de03871-5d46-4539-a82d-3aa992a69a83
 3status: experimental
 4description: Detects the modification of the registry to disable a system restore on the computer
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1490/T1490.md#atomic-test-9---disable-system-restore-through-registry
 7author: frack113
 8date: 2022/04/04
 9modified: 2023/08/17
10tags:
11    - attack.impact
12    - attack.t1490
13logsource:
14    category: registry_set
15    product: windows
16detection:
17    selection:
18        TargetObject|contains:
19            - '\Policies\Microsoft\Windows NT\SystemRestore'
20            - '\Microsoft\Windows NT\CurrentVersion\SystemRestore'
21        TargetObject|endswith:
22            - DisableConfig
23            - DisableSR
24        Details: 'DWORD (0x00000001)'
25    condition: selection
26falsepositives:
27    - Unknown
28level: high

References

Related rules

to-top