Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,8 @@
ansible.builtin.systemd:
name: systemd-journald
state: restarted

- name: reload systemd daemon
ansible.builtin.systemd:
daemon_reload: yes
become: true
3 changes: 3 additions & 0 deletions tasks/amazon_linux.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
- name: Amazon Linux 2 | Configure Additional Process handling
include_tasks: configure_additional_process_handling_al2.yaml
23 changes: 23 additions & 0 deletions tasks/configure_additional_process_handling_al2.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
# Kernel hardening parameters
- name: "Configure kernel hardening parameters"
ansible.builtin.sysctl:
name: "{{ item.name }}"
value: "{{ item.value }}"
state: present
sysctl_set: true
reload: yes
sysctl_file: /etc/sysctl.d/60-kernel_sysctl.conf
loop: "{{ kernel_hardening_params }}"
loop_control:
label: "{{ item.desc }}"

# Core dump restrictions
- name: "Configure core dump restrictions"
ansible.builtin.blockinfile:
path: /etc/systemd/coredump.conf
create: yes
block: "{{ coredump_config_block }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ensure this will not append content again and again

notify:
- reload systemd daemon

12 changes: 8 additions & 4 deletions tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@
- name: Include CIS Stage Specific vars
include_vars: cis-{{ cis_Stage }}.yaml

- name: Debian realted Specification
- name: Debian related Specification
include_tasks: configure_Debian.yaml
when:
ansible_os_family == 'Debian'

- name: Centos realted Specification
- name: CentOS related Specification
include_tasks: configure_RedHat.yaml
when:
ansible_os_family == 'RedHat'
when: ansible_os_family == 'RedHat' and ansible_distribution != 'Amazon'

- name: Amazon Linux 2 related Specification
include_tasks: amazon_linux.yaml
when: ansible_distribution == 'Amazon'

# - name: Special purpose services
# include_tasks: services.yaml
Expand All @@ -35,3 +38,4 @@

# - name: Ensure dccp and sctp is disabled
# include_tasks: network_protocol_and_unusedFilesystem.yaml

11 changes: 11 additions & 0 deletions vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,3 +88,14 @@ os_services_name: ['avahi-daemon', 'slapd', 'named', 'cups', 'telnet', 'discard-
# aide cronjob configuration
minute_aide_cronjob: '0'
hour_aide_cronjob: '5'

#Configure Additional Process Hardening
kernel_hardening_params:
- { name: "kernel.randomize_va_space", value: "2", desc: "Ensure ASLR is enabled" }
- { name: "kernel.yama.ptrace_scope", value: "1", desc: "Restrict ptrace_scope" }

coredump_config_block: |
[Coredump]
ProcessSizeMax=0
Storage=none