forked from ansible-lockdown/RHEL9-CIS
updated controls
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
parent
1ef886c0a9
commit
b9e17f74d1
1 changed files with 52 additions and 25 deletions
|
|
@ -160,22 +160,27 @@
|
||||||
label: "{{ item.mount }}"
|
label: "{{ item.mount }}"
|
||||||
when: item['device'].startswith('/dev') and not 'bind' in item['options']
|
when: item['device'].startswith('/dev') and not 'bind' in item['options']
|
||||||
|
|
||||||
- name: "6.1.10 | AUDIT | Ensure no unowned files or directories exist | Displaying any unowned files or directories"
|
- name: "6.1.10 | AUDIT | Ensure no unowned files or directories exist | set fact"
|
||||||
ansible.builtin.debug:
|
ansible.builtin.set_fact:
|
||||||
msg: "Warning !! Manual intervention is required -- missing owner on items in {{ item.item.mount }}: {{ item.stdout_lines | join(', ') }}"
|
rhel_09_6_1_10_unowned_files_found: true
|
||||||
loop: "{{ rhel_09_6_1_10_audit.results }}"
|
loop: "{{ rhel_09_6_1_10_audit.results }}"
|
||||||
when:
|
when:
|
||||||
- item.stdout_lines is defined
|
- item.stdout | length > 0
|
||||||
- item.stdout_lines | length > 0
|
|
||||||
|
- name: "6.1.10 | AUDIT | Ensure no unowned files or directories exist | Displaying any unowned files or directories"
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: "Warning!! Missing owner on items in {{ rhel_09_6_1_10_audit | json_query('results[*].stdout_lines[*]') | flatten }}"
|
||||||
|
when:
|
||||||
|
- rhel_09_6_1_10_unowned_files_found
|
||||||
|
|
||||||
- name: "6.1.10 | AUDIT | Ensure no unowned files or directories exist | warning"
|
- name: "6.1.10 | AUDIT | Ensure no unowned files or directories exist | warning"
|
||||||
ansible.builtin.import_tasks: warning_facts.yml
|
ansible.builtin.import_tasks: warning_facts.yml
|
||||||
vars:
|
vars:
|
||||||
warn_control_id: '6.1.10'
|
warn_control_id: '6.1.10'
|
||||||
when:
|
when:
|
||||||
- item.stdout_lines is defined
|
- rhel_09_6_1_10_unowned_files_found
|
||||||
- item.stdout_lines | length > 0
|
vars:
|
||||||
|
rhel_09_6_1_10_unowned_files_found: false
|
||||||
when:
|
when:
|
||||||
- rhel9cis_rule_6_1_10
|
- rhel9cis_rule_6_1_10
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -199,21 +204,27 @@
|
||||||
label: "{{ item.mount }}"
|
label: "{{ item.mount }}"
|
||||||
when: item['device'].startswith('/dev') and not 'bind' in item['options']
|
when: item['device'].startswith('/dev') and not 'bind' in item['options']
|
||||||
|
|
||||||
- name: "6.1.11 | AUDIT | Ensure no ungrouped files or directories exist | Displaying all ungrouped files or directories"
|
- name: "6.1.11 | AUDIT | Ensure no ungrouped files or directories exist | set fact"
|
||||||
ansible.builtin.debug:
|
ansible.builtin.set_fact:
|
||||||
msg: "Warning !! Manual intervention is required -- missing group on items in {{ item.item.mount }}: {{ item.stdout_lines | join(', ') }}"
|
rhel_09_6_1_11_ungrouped_files_found: true
|
||||||
loop: "{{ rhel_09_6_1_11_audit.results }}"
|
loop: "{{ rhel_09_6_1_11_audit.results }}"
|
||||||
when:
|
when:
|
||||||
- item.stdout_lines is defined
|
- item.stdout | length > 0
|
||||||
- item.stdout_lines | length > 0
|
|
||||||
|
- name: "6.1.11 | AUDIT | Ensure no ungrouped files or directories exist | Displaying all ungrouped files or directories"
|
||||||
|
ansible.builtin.debug:
|
||||||
|
msg: "Warning!! Missing group on items in {{ rhel_09_6_1_11_audit | json_query('results[*].stdout_lines[*]') | flatten }}"
|
||||||
|
when:
|
||||||
|
- rhel_09_6_1_11_ungrouped_files_found
|
||||||
|
|
||||||
- name: "6.1.11 | AUDIT | Ensure no ungrouped files or directories exist | warning"
|
- name: "6.1.11 | AUDIT | Ensure no ungrouped files or directories exist | warning"
|
||||||
ansible.builtin.import_tasks: warning_facts.yml
|
ansible.builtin.import_tasks: warning_facts.yml
|
||||||
vars:
|
vars:
|
||||||
warn_control_id: '6.1.11'
|
warn_control_id: '6.1.11'
|
||||||
when:
|
when:
|
||||||
- item.stdout_lines is defined
|
- rhel_09_6_1_11_ungrouped_files_found
|
||||||
- item.stdout_lines | length > 0
|
vars:
|
||||||
|
- rhel_09_6_1_11_ungrouped_files_found: false
|
||||||
when:
|
when:
|
||||||
- rhel9cis_rule_6_1_11
|
- rhel9cis_rule_6_1_11
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -244,24 +255,32 @@
|
||||||
ansible.builtin.shell: df {{ item.mount }} -P | awk {'if (NR!=1) print $6'} | xargs -I '{}' find '{}' -xdev -type f -perm -4000
|
ansible.builtin.shell: df {{ item.mount }} -P | awk {'if (NR!=1) print $6'} | xargs -I '{}' find '{}' -xdev -type f -perm -4000
|
||||||
failed_when: false
|
failed_when: false
|
||||||
changed_when: false
|
changed_when: false
|
||||||
register: rhel_09_6_1_13_perms_results
|
register: rhel_09_6_1_13_suid_perms
|
||||||
loop: "{{ ansible_mounts }}"
|
loop: "{{ ansible_mounts }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.mount }}"
|
label: "{{ item.mount }}"
|
||||||
|
|
||||||
|
- name: "6.1.13 | AUDIT | Audit SUID executables | set fact SUID executables"
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
rhel8cis_6_1_13_suid_found: true
|
||||||
|
loop: "{{ rhel_09_6_1_13_suid_perms.results }}"
|
||||||
|
when:
|
||||||
|
- item.stdout | length > 0
|
||||||
|
|
||||||
- name: "6.1.13 | AUDIT | Audit SUID executables | Alert SUID executables exist"
|
- name: "6.1.13 | AUDIT | Audit SUID executables | Alert SUID executables exist"
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "Warning!! Manual intervention is required -- SUID set on items in {{ item.item.mount }}: {{ item.stout_lines | join(', ') }}"
|
msg: "Warning!! SUID set on items in {{ rhel_09_6_1_13_suid_perms | json_query('results[*].stdout_lines[*]') | flatten }}"
|
||||||
loop: "{{ rhel_09_6_1_13_perms_results.stdout_lines }}"
|
|
||||||
when:
|
when:
|
||||||
- rhel_09_6_1_13_perms_results.stdout is defined
|
- rhel8cis_6_1_13_suid_found
|
||||||
|
|
||||||
- name: "6.1.13 | AUDIT | Audit SUID executables | Alert SUID executables exist | warning"
|
- name: "6.1.13 | AUDIT | Audit SUID executables | Alert SUID executables exist | warning"
|
||||||
ansible.builtin.import_tasks: warning_facts.yml
|
ansible.builtin.import_tasks: warning_facts.yml
|
||||||
vars:
|
vars:
|
||||||
warn_control_id: '6.1.13'
|
warn_control_id: '6.1.13'
|
||||||
when:
|
when:
|
||||||
- rhel_09_6_1_13_perms_results.stdout is defined
|
- rhel8cis_6_1_13_suid_found
|
||||||
|
vars:
|
||||||
|
rhel8cis_6_1_13_suid_found: false
|
||||||
when:
|
when:
|
||||||
- rhel9cis_rule_6_1_13
|
- rhel9cis_rule_6_1_13
|
||||||
tags:
|
tags:
|
||||||
|
|
@ -278,24 +297,32 @@
|
||||||
ansible.builtin.shell: df {{ item.mount }} -P | awk {'if (NR!=1) print $6'} | xargs -I '{}' find '{}' -xdev -type f -perm -2000
|
ansible.builtin.shell: df {{ item.mount }} -P | awk {'if (NR!=1) print $6'} | xargs -I '{}' find '{}' -xdev -type f -perm -2000
|
||||||
failed_when: false
|
failed_when: false
|
||||||
changed_when: false
|
changed_when: false
|
||||||
register: rhel_09_6_1_14_perms_results
|
register: rhel_09_6_1_14_sgid_perms
|
||||||
loop: "{{ ansible_mounts }}"
|
loop: "{{ ansible_mounts }}"
|
||||||
loop_control:
|
loop_control:
|
||||||
label: "{{ item.mount }}"
|
label: "{{ item.mount }}"
|
||||||
|
|
||||||
|
- name: "6.1.14 | AUDIT | Audit SGID executables | Set fact SGID executables"
|
||||||
|
ansible.builtin.set_fact:
|
||||||
|
rhel8cis_6_1_14_sgid_found: true
|
||||||
|
loop: "{{ rhel_09_6_1_14_sgid_perms.results }}"
|
||||||
|
when:
|
||||||
|
- item.stdout | length > 0
|
||||||
|
|
||||||
- name: "6.1.14 | AUDIT | Audit SGID executables | Alert SGID executables exist"
|
- name: "6.1.14 | AUDIT | Audit SGID executables | Alert SGID executables exist"
|
||||||
ansible.builtin.debug:
|
ansible.builtin.debug:
|
||||||
msg: "Manual intervention is required -- SGID set on items in {{ item.item.mount }}: {{ item.stout_lines | join(', ') }}"
|
msg: "Warning!! SGID set on items in {{ rhel_09_6_1_14_sgid_perms | json_query('results[*].stdout_lines[*]') | flatten }}"
|
||||||
loop: "{{ rhel_09_6_1_14_perms_results.stdout_lines }}"
|
|
||||||
when:
|
when:
|
||||||
- rhel_09_6_1_14_perms_results.stdout is defined
|
- rhel8cis_6_1_14_sgid_found
|
||||||
|
|
||||||
- name: "6.1.14 | AUDIT | Audit SGID executables| warning"
|
- name: "6.1.14 | AUDIT | Audit SGID executables| warning"
|
||||||
ansible.builtin.import_tasks: warning_facts.yml
|
ansible.builtin.import_tasks: warning_facts.yml
|
||||||
vars:
|
vars:
|
||||||
warn_control_id: '6.1.14'
|
warn_control_id: '6.1.14'
|
||||||
when:
|
when:
|
||||||
- rhel_09_6_1_14_perms_results.stdout is defined
|
- rhel8cis_6_1_14_sgid_found
|
||||||
|
vars:
|
||||||
|
rhel8cis_6_1_14_sgid_found: false
|
||||||
when:
|
when:
|
||||||
- rhel9cis_rule_6_1_14
|
- rhel9cis_rule_6_1_14
|
||||||
tags:
|
tags:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue