ansible-collection-hardening/roles/os_hardening/tasks/suid_sgid.yml

34 lines
1.2 KiB
YAML
Raw Normal View History

2015-05-26 19:53:55 +00:00
---
- name: Remove suid/sgid bit from binaries in blacklist | os-06
ansible.builtin.file:
path: "{{ item }}"
mode: a-s
state: file
follow: true
failed_when: false
with_community.general.flattened:
- "{{ os_security_suid_sgid_system_blacklist }}"
- "{{ os_security_suid_sgid_blacklist }}"
2015-05-26 19:53:55 +00:00
- name: Find binaries with suid/sgid set | os-06
ansible.builtin.shell: find / -xdev \( -perm -4000 -o -perm -2000 \) -type f ! -path '/proc/*' -print 2>/dev/null
2015-05-31 15:51:57 +00:00
register: sbit_binaries
when: os_security_suid_sgid_remove_from_unknown | bool
changed_when: false
check_mode: false
2015-05-31 15:51:57 +00:00
- name: Gather files from which to remove suids/sgids and remove system white-listed files | os-06
ansible.builtin.set_fact:
suid: "{{ sbit_binaries.stdout_lines | difference(os_security_suid_sgid_system_whitelist) }}"
when: os_security_suid_sgid_remove_from_unknown | bool
2015-05-31 15:51:57 +00:00
- name: Remove suid/sgid bit from all binaries except in system and user whitelist | os-06
ansible.builtin.file:
path: "{{ item }}"
mode: a-s
state: file
follow: true
with_community.general.flattened:
- "{{ suid | default([]) | difference(os_security_suid_sgid_whitelist) }}"
when: os_security_suid_sgid_remove_from_unknown | bool