File or Folder Permissions Change

Detects file and folder permission changes.

Sigma rule (View on GitHub)

 1title: File or Folder Permissions Change
 2id: 74c01ace-0152-4094-8ae2-6fd776dd43e5
 3status: test
 4description: Detects file and folder permission changes.
 5references:
 6    - https://github.com/redcanaryco/atomic-red-team/blob/f339e7da7d05f6057fdfcdd3742bfcf365fee2a9/atomics/T1222.002/T1222.002.md
 7author: Jakob Weinzettl, oscd.community
 8date: 2019/09/23
 9modified: 2021/11/27
10tags:
11    - attack.defense_evasion
12    - attack.t1222.002
13logsource:
14    product: linux
15    service: auditd
16detection:
17    selection:
18        type: 'EXECVE'
19        a0|contains:
20            - 'chmod'
21            - 'chown'
22    condition: selection
23falsepositives:
24    - User interacting with files permissions (normal/daily behaviour).
25level: low

References

Related rules

to-top