Files
blue-team-tools/rules/linux/lnx_file_or_folder_permissions.yml
T

24 lines
671 B
YAML
Raw Normal View History

2020-02-20 23:00:16 +01:00
title: File or Folder Permissions Change
2019-12-19 23:56:36 +01:00
id: 74c01ace-0152-4094-8ae2-6fd776dd43e5
2019-10-23 11:24:13 -07:00
status: experimental
2020-09-13 22:03:04 -06:00
description: Detects file and folder permission changes
2019-10-23 11:24:13 -07:00
author: Jakob Weinzettl, oscd.community
date: 2019/09/23
2020-09-13 22:03:04 -06:00
references:
- https://github.com/redcanaryco/atomic-red-team/blob/master/atomics/T1222.002/T1222.002.yaml
2019-10-23 11:24:13 -07:00
logsource:
product: linux
2019-11-29 09:33:04 +01:00
service: auditd
2019-10-23 11:24:13 -07:00
detection:
2019-11-29 09:33:04 +01:00
selection:
type: 'EXECVE'
2019-12-02 02:53:35 +01:00
a0|contains:
2019-11-29 09:33:04 +01:00
- 'chmod'
- 'chown'
condition: selection
2019-10-23 11:24:13 -07:00
falsepositives:
- User interracting with files permissions (normal/daily behaviour)
level: low
2020-09-13 22:03:04 -06:00
tags:
- attack.defense_evasion
- attack.t1222.002