123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- #!/bin/sh
- # bachir soussi chiadmi
- #
- # http://www.debian.org/doc/manuals/securing-debian-howto/
- # https://www.thefanclub.co.za/how-to/how-secure-ubuntu-1204-lts-server-part-1-basics
- # https://www.linode.com/docs/websites/lamp/lamp-server-on-debian-7-wheezy/
- #
- echo "This script has been tested only on Linux Debian 7"
- echo "Installing harden"
- apt-get install harden
- echo "Installing ufw and setup firewall (allowing only ssh and http)"
- apt-get install ufw
- ufw allow ssh
- ufw allow http
- ufw enable
- ufw status verbose
- echo "Create new user (you will be asked a user name and a password)"
- read -p "Enter user name: " user
- # read -p "Continue? (Y/N): " confirm && [[ $confirm == [yY] || $confirm == [yY][eE][sS] ]] || exit 1
- adduser "$user"
- echo "adding $user to admin group and limiting su to the admin group"
- groupadd admin
- usermod -a -G admin "$user"
- dpkg-statoverride --update --add root admin 4750 /bin/su
- echo "Securing ssh (disabling root login)"
- sed -i 's/PermitRootLogin\ yes/PermitRootLogin no/g' /etc/ssh/sshd_config
- sed -i 's/PermitEmptyPasswords\ yes/PermitEmptyPasswords no/g' /etc/ssh/sshd_config
- sed -i 's/Protocol\ [0-9]/Protocol 2/g' /etc/ssh/sshd_config
- echo "Installing AMP web server"
- echo "Installing Apache2"
- apt-get install apache2
- a2enmod rewrite
- service apache2 restart
- echo "installing Mysql"
- apt-get install mysql-server
- mysql_secure_installation
- echo "Installing PHP"
- apt-get install php5 php-pear
- echo "Configuring PHP"
- cp /etc/php5/apache2/php.ini /etc/php5/apache2/php.ini.back
- sed -i "s/max_execution_time\ =\ [0-9]\+/max_execution_time = 60/g" /etc/php5/apache2/php.ini
- sed -i "s/max_input_time\ =\ [0-9]\+/max_input_time = 60/g" /etc/php5/apache2/php.ini
- sed -i "s/memory_limit\ =\ [0-9]\+M/memory_limit = 512M/g" /etc/php5/apache2/php.ini
- sed -i "s/;\?error_reporting\ =\ [^\n]\+/error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR/g" /etc/php5/apache2/php.ini
- sed -i "s/;\?display_errors\ =\ On/display_errors = Off/g" /etc/php5/apache2/php.ini
- sed -i "s/;\?log_errors\ =\ Off/log_errors = On/g" /etc/php5/apache2/php.ini
- # following command doesn't work, make teh change manualy
- #sed -ri ":a;$!{N;ba};s/;\?\ \?error_log\ =\ [^\n]\+([^\n]*\n(\n|$))/error_log = \/var\/log\/php\/error.log\1/g" /etc/php5/apache2/php.ini
- echo "register_globals = Off" >> /etc/php5/apache2/php.ini
- mkdir /var/log/php
- chown www-data /var/log/php
- apt-get install php5-mysql
- service apache2 restart
|