mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
23 lines
337 B
Bash
23 lines
337 B
Bash
#!/bin/bash
|
|
|
|
# CIs Deb
|
|
#
|
|
# CIS Debian 7 Hardening
|
|
# Authors : Thibault Dewailly, OVH <thibault.dewailly@corp.ovh.com>
|
|
#
|
|
|
|
#
|
|
# Main script : Execute hardening considering configuration
|
|
#
|
|
|
|
# Execute blindly binaries
|
|
# Audit mode
|
|
|
|
# ls | sort -V
|
|
|
|
cd /opt/cis-hardening/bin/hardening
|
|
for i in $(ls | sort -V); do
|
|
echo "$i"
|
|
./$i --audit
|
|
done
|