From a5b572c4a4e73bc0b369c20c9cdf7b2f5804b8ea Mon Sep 17 00:00:00 2001 From: Frederic Lepied Date: Mon, 21 Nov 2005 10:21:35 +0000 Subject: no longer needed (since the switch to python) --- init-sh/level1.sh | 101 ------------------------------------------------------ 1 file changed, 101 deletions(-) delete mode 100755 init-sh/level1.sh (limited to 'init-sh/level1.sh') diff --git a/init-sh/level1.sh b/init-sh/level1.sh deleted file mode 100755 index ce6b2d7..0000000 --- a/init-sh/level1.sh +++ /dev/null @@ -1,101 +0,0 @@ -#!/bin/bash - -# -# Security level implementation... -# Writen by Vandoorselaere Yoann -# - - -if [[ -f /usr/share/msec/lib.sh ]]; then - . /usr/share/msec/lib.sh -else - echo "Can't find /usr/share/msec/lib.sh, exiting." - exit 1 -fi - -# login as root on console granted... -echo "Login as root is granted :" -AddRules "tty1" /etc/securetty quiet -AddRules "tty2" /etc/securetty quiet -AddRules "tty3" /etc/securetty quiet -AddRules "tty4" /etc/securetty quiet -AddRules "tty5" /etc/securetty quiet -AddRules "tty6" /etc/securetty -AddRules "vc/1" /etc/securetty quiet -AddRules "vc/2" /etc/securetty quiet -AddRules "vc/3" /etc/securetty quiet -AddRules "vc/4" /etc/securetty quiet -AddRules "vc/5" /etc/securetty quiet -AddRules "vc/6" /etc/securetty - -# Security check -echo "Updating file check variable : " -echo -e "\t- Check security : yes." - AddRules "CHECK_SECURITY=yes" /etc/security/msec/security.conf quiet -echo -e "\t- Check important permissions : no." - AddRules "CHECK_PERMS=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check suid root file : no." - AddRules "CHECK_SUID_ROOT=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check suid root file integrity (backdoor check) : no." - AddRules "CHECK_SUID_MD5=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check suid group file : no." - AddRules "CHECK_SUID_GROUP=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check world writable file : no." - AddRules "CHECK_WRITABLE=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check unowned file : no." - AddRules "CHECK_UNOWNED=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check promiscuous mode : no." - AddRules "CHECK_PROMISC=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check listening port : no." - AddRules "CHECK_OPEN_PORT=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check passwd file integrity : no." - AddRules "CHECK_PASSWD=no" /etc/security/msec/security.conf quiet -echo -e "\t- Check shadow file integrity : no." - AddRules "CHECK_SHADOW=no" /etc/security/msec/security.conf quiet -echo -e "\t- Security warning on tty : no." - AddRules "TTY_WARN=no" /etc/security/msec/security.conf quiet -echo -e "\t- Security warning by mail : no." - AddRules "MAIL_WARN=no" /etc/security/msec/security.conf quiet -echo -e "\t- Security warning in syslog : no." - AddRules "SYSLOG_WARN=no" /etc/security/msec/security.conf -# end security check - -export SECURE_LEVEL=1 -echo "Setting secure level variable to 1 :" -AddRules "SECURE_LEVEL=1" /etc/sysconfig/msec - -echo "Setting umask to 022 (u=rw,g=r,o=r) :" -AddRules "UMASK_ROOT=022" /etc/sysconfig/msec -AddRules "UMASK_USER=022" /etc/sysconfig/msec - -# Xserver -echo "Allowing users to connect X server from localhost :" -AddBegRules "/usr/X11R6/bin/xhost + localhost" /etc/X11/xinit.d/msec - -# Group -echo "Adding system users to specific groups :" -/usr/share/msec/grpuser.sh --refresh -grpconv -echo -e "done.\n" - -# icmp echo -echo "Enabling icmp echo :" -AddRules "net.ipv4.icmp_echo_ignore_all=0" /etc/sysctl.conf -AddRules "net.ipv4.icmp_echo_ignore_broadcasts=0" /etc/sysctl.conf - -# bad error -echo "Disabling bad error message Protection :" -AddRules "net.ipv4.icmp_ignore_bogus_error_responses=0" /etc/sysctl.conf - -# log strange packets -echo "Disabling logging Spoofed Packets, Source Routed Packets, Redirect Packets :" -AddRules "net.ipv4.conf.all.log_martians=0" /etc/sysctl.conf - -LoadSysctl - -AllowAutologin - -# Do not boot on a shell -AllowReboot -AllowUserList -RootSshLogin 1 -- cgit v1.2.1