Automated CIS Benchmark Compliance Remediation for RHEL 9 with Ansible (from Ansible Lockdown) https://www.lockdownenterprise.com
Find a file
Mark Bolwell 56f0618bc3
updated
Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
2023-01-27 11:04:08 +00:00
.github enabled reboot of host 2023-01-24 10:22:58 +00:00
collections tss user and spacing 2022-09-27 17:15:49 +02:00
defaults Added # comment 2023-01-26 16:03:17 +00:00
files/etc/systemd/system Initial 2022-01-07 09:06:18 +00:00
handlers standardize handler naming 2023-01-25 09:41:32 +00:00
meta syntax update 2023-01-23 16:08:11 +00:00
tasks fixed spacing 2023-01-27 11:03:36 +00:00
templates initial 2023-01-20 11:22:06 +00:00
vars updated ansible min version 2023-01-27 11:03:47 +00:00
.ansible-lint updated 2023-01-18 16:26:58 +00:00
.gitattributes Initial 2022-01-07 09:06:18 +00:00
.gitignore add doc dir temp 2022-01-13 16:50:39 +00:00
.yamllint lint updates 2023-01-23 13:58:50 +00:00
ansible.cfg updated to enable greater speed 2023-01-24 10:22:26 +00:00
Changelog.md updated 2023-01-26 15:03:05 +00:00
CONTRIBUTING.rst Initial 2022-01-07 09:06:18 +00:00
LICENSE updated 2022-01-07 09:22:40 +00:00
local.yml lint 2022-04-05 10:24:47 +01:00
Makefile tidy up 2023-01-23 16:21:56 +00:00
README.md updated 2023-01-27 11:04:08 +00:00
requirements.txt Added requirements Make 2023-01-13 14:18:34 +00:00
site.yml lint updates 2023-01-13 12:10:18 +00:00

RHEL 9 CIS

v1.0.0 - released Dec 2022

Build Status Build Status Release

Configure RHEL 9 machine to be CIS

Based on CIS RedHat Enterprise Linux 9 Benchmark v1.0.0. - 11-30-2022

Join us

On our Discord Server to ask questions, discuss features, or just chat with other Ansible-Lockdown users

Caution(s)

This role will make changes to the system which may have unintended concequences.

This role was developed against a clean install of the Operating System. If you are implimenting to an existing system please review this role for any site specific changes that are needed.

To use release version please point to main branch

Documentation

Requirements

RHEL 9 Almalinux 9 Rocky 9

ansible 2.10 jmespath relevant collections

  • Access to download or add the goss binary and content to the system if using auditing (other options are available on how to get the content to the system.)

Tested with

ansible-base 2.10.17 - python 3.8 ansible-core 2.13.4 - python 3.10

  • makefile - this is there purely for testing and initial setup purposes.

General

  • Basic knowledge of Ansible, below are some links to the Ansible documentation to help get started if you are unfamiliar with Ansible

  • Functioning Ansible and/or Tower Installed, configured, and running. This includes all of the base Ansible/Tower configurations, needed packages installed, and infrastructure setup.

  • Please read through the tasks in this role to gain an understanding of what each control is doing.

    • Some of the tasks are disruptive and can have unintended consiquences in a live production system. Also familiarize yourself with the variables in the defaults/main.yml file

Dependencies

  • Python3
  • Ansible 2.9+
  • python-def (should be included in RHEL 9)
  • libselinux-python
  • pip packages
    • jmespath ( complete list found in requirements.txt)
  • collections found in collections/requirememnts.yml

Role Variables

This role is designed that the end user should not have to edit the tasks themselves. All customizing should be done by overriding the required varaibles as found in defaults/main.yml file. e.g. using inventory, group_vars, extra_vars

Tags

There are many tags available for added control precision. Each control has it's own set of tags noting what level, if it's scored/notscored, what OS element it relates to, if it's a patch or audit, and the rule number.

Below is an example of the tag section from a control within this role. Using this example if you set your run to skip all controls with the tag services, this task will be skipped. The opposite can also happen where you run only controls tagged with services.

      tags:
      - level1-server
      - level1-workstation
      - scored
      - avahi
      - services
      - patch
      - rule_2.2.4

Known Issues

CIS 1.2.4 - repo_gpgcheck is not carried out for RedHat hosts as the default repos do not have this function. This also affect EPEL(not covered by var). - Rocky and Alma not affected. Variable used to unset. rhel9cis_rhel_default_repo: true # to be set to false if using repo that does have this ability