From 2e53dfb573615bdddbfc3e1980f3d91fd54b5e0b Mon Sep 17 00:00:00 2001 From: GoldenKiwi Date: Fri, 29 Sep 2023 16:20:34 +0200 Subject: [PATCH] feat: Officialize Debian 12 support (#206) * feat: Officialize Debian 12 support Functional tests now pass CIS Benchmark PDF for Debian 12 is not out yet, but the hardening points checked are still relevant in Debian 12. OVHcloud is now using it in critical production, hence making it officially supported --------- Co-authored-by: ThibaultDewailly --- MANUAL.md | 4 ++-- README.md | 2 +- debian/cis-hardening.8 | 4 ++-- lib/constants.sh | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/MANUAL.md b/MANUAL.md index 64b6e3b..d336a8a 100644 --- a/MANUAL.md +++ b/MANUAL.md @@ -4,7 +4,7 @@ # NAME -cis-hardening - CIS Debian 10/11 Hardening +cis-hardening - CIS Debian 10/11/12 Hardening # SYNOPSIS @@ -12,7 +12,7 @@ cis-hardening - CIS Debian 10/11 Hardening # DESCRIPTION -Modular Debian 10/11 security hardening scripts based on the CIS (https://www.cisecurity.org) recommendations. +Modular Debian 10/11/12 security hardening scripts based on the CIS (https://www.cisecurity.org) recommendations. We use it at OVHcloud (https://www.ovhcloud.com) to harden our PCI-DSS infrastructure. diff --git a/README.md b/README.md index 9ff6b70..4c145c0 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ ![License](https://img.shields.io/github/license/ovh/debian-cis) --- -Modular Debian 10/11 security hardening scripts based on [cisecurity.org](https://www.cisecurity.org) +Modular Debian 10/11/12 security hardening scripts based on [cisecurity.org](https://www.cisecurity.org) recommendations. We use it at [OVHcloud](https://www.ovhcloud.com) to harden our PCI-DSS infrastructure. ```console diff --git a/debian/cis-hardening.8 b/debian/cis-hardening.8 index 07bf964..1fcf7e4 100644 --- a/debian/cis-hardening.8 +++ b/debian/cis-hardening.8 @@ -4,13 +4,13 @@ .hy .SH NAME .PP -cis-hardening - CIS Debian 10/11 Hardening +cis-hardening - CIS Debian 10/11/12 Hardening .SH SYNOPSIS .PP \f[B]hardening.sh\f[R] RUN_MODE OPTIONS .SH DESCRIPTION .PP -Modular Debian 10/11 security hardening scripts based on the CIS +Modular Debian 10/11/12 security hardening scripts based on the CIS (https://www.cisecurity.org) recommendations. .PP We use it at OVHcloud (https://www.ovhcloud.com) to harden our PCI-DSS diff --git a/lib/constants.sh b/lib/constants.sh index 8a5d86d..6a77a9d 100644 --- a/lib/constants.sh +++ b/lib/constants.sh @@ -59,4 +59,4 @@ get_debian_major_version # shellcheck disable=SC2034 SMALLEST_SUPPORTED_DEBIAN_VERSION=10 # shellcheck disable=SC2034 -HIGHEST_SUPPORTED_DEBIAN_VERSION=11 +HIGHEST_SUPPORTED_DEBIAN_VERSION=12