install-debian-server.sh 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398
  1. #!/bin/sh
  2. # bachir soussi chiadmi
  3. #
  4. # http://www.debian.org/doc/manuals/securing-debian-howto/
  5. # https://www.thefanclub.co.za/how-to/how-secure-ubuntu-1204-lts-server-part-1-basics
  6. # https://www.linode.com/docs/websites/lamp/lamp-server-on-debian-7-wheezy/
  7. # http://web-74.com/blog/reseaux/gerer-le-deploiement-facilement-avec-git/
  8. #
  9. echo '
  10. ____ __ _ _____
  11. / __ \___ / /_ (_)___ _____ / ___/___ ______ _____ _____
  12. / / / / _ \/ __ \/ / __ `/ __ \ \__ \/ _ \/ ___/ | / / _ \/ ___/
  13. / /_/ / __/ /_/ / / /_/ / / / / ___/ / __/ / | |/ / __/ /
  14. /_____/\___/_.___/_/\__,_/_/ /_/ /____/\___/_/ |___/\___/_/
  15. '
  16. echo "\033[35;1mThis script has been tested only on Linux Debian 7 \033[0m"
  17. echo "Please run this script as root"
  18. echo -n "Should we start? [Y|n] "
  19. read yn
  20. yn=${yn:-y}
  21. if [ "$yn" != "y" ]; then
  22. echo "aborting script!"
  23. exit
  24. fi
  25. # get the current position
  26. _cwd="$(pwd)"
  27. echo '
  28. __ ______ __________ ___ ____ ______
  29. / / / / __ \/ ____/ __ \/ | / __ \/ ____/
  30. / / / / /_/ / / __/ /_/ / /| | / / / / __/
  31. / /_/ / ____/ /_/ / _, _/ ___ |/ /_/ / /___
  32. \____/_/ \____/_/ |_/_/ |_/_____/_____/
  33. '
  34. apt-get update
  35. apt-get upgrade
  36. echo '
  37. __ ____
  38. / |/ (_)_________
  39. / /|_/ / / ___/ ___/
  40. / / / / (__ ) /__
  41. /_/ /_/_/____/\___/
  42. '
  43. apt-get install vim
  44. echo '
  45. __ _____ ____ ____ _______ __
  46. / / / / | / __ \/ __ \/ ____/ | / /
  47. / /_/ / /| | / /_/ / / / / __/ / |/ /
  48. / __ / ___ |/ _, _/ /_/ / /___/ /| /
  49. /_/ /_/_/ |_/_/ |_/_____/_____/_/ |_/
  50. '
  51. echo "\033[35;1mInstalling harden \033[0m"
  52. sleep 3
  53. apt-get install harden
  54. echo "Harden instaled"
  55. echo "033[92;1m* * *033[Om"
  56. echo '
  57. ______________ _______ _____ __ __
  58. / ____/ _/ __ \/ ____/ | / / | / / / /
  59. / /_ / // /_/ / __/ | | /| / / /| | / / / /
  60. / __/ _/ // _, _/ /___ | |/ |/ / ___ |/ /___/ /___
  61. /_/ /___/_/ |_/_____/ |__/|__/_/ |_/_____/_____/
  62. '
  63. echo "\033[35;1mInstalling ufw and setup firewall (allowing only ssh and http) \033[0m"
  64. sleep 3
  65. apt-get install ufw
  66. ufw allow ssh
  67. ufw allow http
  68. ufw enable
  69. ufw status verbose
  70. echo "ufw installed and firwall configured"
  71. echo "033[92;1m* * *033[Om"
  72. echo '
  73. ______ _ _____ __
  74. / ____/___ _(_) /__ \ / /_ ____ _____
  75. / /_ / __ `/ / /__/ // __ \/ __ `/ __ \
  76. / __/ / /_/ / / // __// /_/ / /_/ / / / /
  77. /_/ \__,_/_/_//____/_.___/\__,_/_/ /_/
  78. '
  79. echo "\033[35;1mInstalling fall2ban \033[0m"
  80. sleep 3
  81. echo "fail2ban installed and configured"
  82. echo "033[92;1m* * *033[Om"
  83. echo '
  84. __ __ __
  85. / /______ ____ _____/ /______/ /
  86. / //_/ __ \/ __ \/ ___/ //_/ __ /
  87. / ,< / / / / /_/ / /__/ ,< / /_/ /
  88. /_/|_/_/ /_/\____/\___/_/|_|\__,_/
  89. '
  90. echo "\033[35;1mInstalling knockd \033[0m"
  91. sleep 3
  92. apt-get install fail2ban
  93. echo "knockd installed and configured"
  94. echo "033[92;1m* * *033[Om"
  95. echo '
  96. __ _______ __________
  97. / / / / ___// ____/ __ \
  98. / / / /\__ \/ __/ / /_/ /
  99. / /_/ /___/ / /___/ _, _/
  100. \____//____/_____/_/ |_|
  101. '
  102. echo "\033[35;1mCreate new user (you will be asked a user name and a password) \033[0m"
  103. sleep 3
  104. echo -n "Enter user name: "
  105. read user
  106. # read -p "Continue? (Y/N): " confirm && [[ $confirm == [yY] || $confirm == [yY][eE][sS] ]] || exit 1
  107. adduser "$user"
  108. echo "adding $user to admin group and limiting su to the admin group"
  109. groupadd admin
  110. usermod -a -G admin "$user"
  111. dpkg-statoverride --update --add root admin 4750 /bin/su
  112. echo "user $user configured"
  113. echo "033[92;1m* * *033[Om"
  114. echo '
  115. __________ __ __
  116. / ___/ ___// / / /
  117. \__ \\__ \/ /_/ /
  118. ___/ /__/ / __ /
  119. /____/____/_/ /_/
  120. '
  121. while [ "$securssh" != "y" ] && [ "$securssh" != "n" ]
  122. do
  123. echo -n "Securing ssh (disabling root login)? [y|n] "
  124. read securssh
  125. # securssh=${securssh:-y}
  126. done
  127. if [ "$securssh" = "y" ]; then
  128. sed -i 's/PermitRootLogin\ yes/PermitRootLogin no/g' /etc/ssh/sshd_config
  129. sed -i 's/PermitEmptyPasswords\ yes/PermitEmptyPasswords no/g' /etc/ssh/sshd_config
  130. sed -i 's/Protocol\ [0-9]/Protocol 2/g' /etc/ssh/sshd_config
  131. service ssh reload
  132. echo "SSH secured"
  133. else
  134. echo 'root user can stile coonect through ssh'
  135. fi
  136. echo "033[92;1m* * *033[Om"
  137. echo "\033[35;1mInstalling AMP web server \033[0m"
  138. echo '
  139. ___ __ ___
  140. / | ____ ____ ______/ /_ ___ |__ \
  141. / /| | / __ \/ __ `/ ___/ __ \/ _ \__/ /
  142. / ___ |/ /_/ / /_/ / /__/ / / / __/ __/
  143. /_/ |_/ .___/\__,_/\___/_/ /_/\___/____/
  144. /_/
  145. '
  146. echo "\033[35;1mInstalling Apache2 \033[0m"
  147. sleep 3
  148. apt-get install apache2
  149. a2enmod rewrite
  150. cat "$_cwd"/assets/apache2.conf > /etc/apache2/apache2.conf
  151. # Change logrotate for Apache2 log files to keep 10 days worth of logs
  152. sed -i 's/\tweekly/\tdaily/' /etc/logrotate.d/apache2
  153. sed -i 's/\trotate .*/\trotate 10/' /etc/logrotate.d/apache2
  154. # Remove Apache server information from headers.
  155. sed -i 's/ServerTokens .*/ServerTokens Prod/' /etc/apache2/conf.d/security
  156. sed -i 's/ServerSignature .*/ServerSignature Off/' /etc/apache2/conf.d/security
  157. service apache2 restart
  158. echo "Apache2 installed"
  159. echo "033[92;1m* * *033[Om"
  160. echo '
  161. __ ___ __
  162. / |/ /_ ___________ _/ /
  163. / /|_/ / / / / ___/ __ `/ /
  164. / / / / /_/ (__ ) /_/ / /
  165. /_/ /_/\__, /____/\__, /_/
  166. /____/ /_/
  167. '
  168. echo "\033[35;1minstalling Mysql \033[0m"
  169. sleep 3
  170. apt-get install mysql-server
  171. mysql_secure_installation
  172. echo "mysql installed"
  173. echo "033[92;1m* * *033[Om"
  174. echo '
  175. ____ __ ______
  176. / __ \/ / / / __ \
  177. / /_/ / /_/ / /_/ /
  178. / ____/ __ / ____/
  179. /_/ /_/ /_/_/
  180. '
  181. echo "\033[35;1mInstalling PHP \033[0m"
  182. sleep 3
  183. apt-get install php5 php-pear php5-gd
  184. echo "Configuring PHP"
  185. cp /etc/php5/apache2/php.ini /etc/php5/apache2/php.ini.back
  186. sed -i "s/max_execution_time\ =\ [0-9]\+/max_execution_time = 60/g" /etc/php5/apache2/php.ini
  187. sed -i "s/max_input_time\ =\ [0-9]\+/max_input_time = 60/g" /etc/php5/apache2/php.ini
  188. sed -i "s/memory_limit\ =\ [0-9]\+M/memory_limit = 512M/g" /etc/php5/apache2/php.ini
  189. 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
  190. sed -i "s/;\?display_errors\ =\ On/display_errors = Off/g" /etc/php5/apache2/php.ini
  191. sed -i "s/;\?log_errors\ =\ Off/log_errors = On/g" /etc/php5/apache2/php.ini
  192. # following command doesn't work, make teh change manualy
  193. #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
  194. echo "register_globals = Off" >> /etc/php5/apache2/php.ini
  195. mkdir /var/log/php
  196. chown www-data /var/log/php
  197. apt-get install php5-mysql
  198. echo "php installed"
  199. echo "033[92;1m* * *033[Om"
  200. echo '
  201. __ __ ___ ___ __ _
  202. ____ / /_ ____ / |/ /_ __/ | ____/ /___ ___ (_)___
  203. / __ \/ __ \/ __ \/ /|_/ / / / / /| |/ __ / __ `__ \/ / __ \
  204. / /_/ / / / / /_/ / / / / /_/ / ___ / /_/ / / / / / / / / / /
  205. / .___/_/ /_/ .___/_/ /_/\__, /_/ |_\__,_/_/ /_/ /_/_/_/ /_/
  206. /_/ /_/ /____/
  207. '
  208. echo "\033[35;1mInstalling phpMyAdmin \033[0m"
  209. apt-get install phpmyadmin
  210. echo "phpMyAdmin installed"
  211. echo "033[92;1m* * *033[Om"
  212. echo '
  213. __ __
  214. _ __/ /_ ____ _____/ /_
  215. | | / / __ \/ __ \/ ___/ __/
  216. | |/ / / / / /_/ (__ ) /_
  217. |___/_/ /_/\____/____/\__/
  218. '
  219. echo "\033[35;1mVHOST install \033[0m"
  220. while [ "$vh" != "y" ] && [ "$vh" != "n" ]
  221. do
  222. echo -n "Should we install a vhost? [y|n] "
  223. read vh
  224. # vh=${vh:-y}
  225. done
  226. if [ "$vh" = "y" ]; then
  227. while [ "$_host_name" = "" ]
  228. do
  229. read -p "enter a hostname ? " _host_name
  230. if [ "$_host_name" != "" ]; then
  231. read -p "is hostname $_host_name correcte [y|n] " validated
  232. if [ "$validated" = "y" ]; then
  233. break
  234. else
  235. _host_name=""
  236. fi
  237. fi
  238. done
  239. cp "$_cwd"/assets/example.org.conf /etc/apache2/sites-available/"$_host_name".conf
  240. sed -ir "s/example\.org/$_host_name/g" /etc/apache2/sites-available/"$_host_name".conf
  241. mkdir -p /srv/www/"$_host_name"/public_html
  242. mkdir /srv/www/"$_host_name"/logs
  243. #set proper right to user will handle the app
  244. chown -R root:admin /srv/www/"$_host_name"/
  245. chmod -R g+w /srv/www/"$_host_name"/
  246. chmod -R g+r /srv/www/"$_host_name"/
  247. # create a shortcut to the site
  248. mkdir /home/"$user"/www/
  249. chown "$user":admin /home/"$user"/www/
  250. ln -s /srv/www/"$_host_name" /home/"$user"/www/"$_host_name"
  251. #activate the vhost
  252. a2ensite "$_host_name".conf
  253. #restart apache
  254. service apache2 restart
  255. echo "vhost $_host_name configured"
  256. else
  257. echo "Vhost installation aborted"
  258. fi
  259. echo "033[92;1m* * *033[Om"
  260. echo '
  261. ___ __ __
  262. / |_ _______/ /_____ _/ /_
  263. / /| | | /| / / ___/ __/ __ `/ __/
  264. / ___ | |/ |/ (__ ) /_/ /_/ / /_
  265. /_/ |_|__/|__/____/\__/\__,_/\__/
  266. '
  267. echo "\033[35;1mInstalling Awstat \033[0m"
  268. sleep 3
  269. apt-get install awstats
  270. # Configure AWStats
  271. temp=`grep -i sitedomain /etc/awstats/awstats.conf.local | wc -l`
  272. if [ $temp -lt 1 ]; then
  273. echo SiteDomain="$_host_name" >> /etc/awstats/awstats.conf.local
  274. fi
  275. # Disable Awstats from executing every 10 minutes. Put a hash in front of any line.
  276. sed -i 's/^[^#]/#&/' /etc/cron.d/awstats
  277. echo "Awstat installed"
  278. echo "033[92;1m* * *033[Om"
  279. # echo '
  280. # ______________ _______
  281. # /_ __/ ____/ |/ / __ \
  282. # / / / __/ / /|_/ / /_/ /
  283. # / / / /___/ / / / ____/
  284. # /_/ /_____/_/ /_/_/
  285. # '
  286. # function check_tmp_secured {
  287. # temp1=`grep -w "/var/tempFS /tmp ext3 loop,nosuid,noexec,rw 0 0" /etc/fstab | wc -l`
  288. # temp2=`grep -w "tmpfs /tmp tmpfs rw,noexec,nosuid 0 0" /etc/fstab | wc -l`
  289. # if [ $temp1 -gt 0 ] || [ $temp2 -gt 0 ]; then
  290. # return 1
  291. # else
  292. # return 0
  293. # fi
  294. # } # End function check_tmp_secured
  295. # function secure_tmp_tmpfs {
  296. # cp /etc/fstab /etc/fstab.bak
  297. # # Backup /tmp
  298. # cp -Rpf /tmp /tmpbackup
  299. # rm -rf /tmp
  300. # mkdir /tmp
  301. # mount -t tmpfs -o rw,noexec,nosuid tmpfs /tmp
  302. # chmod 1777 /tmp
  303. # echo "tmpfs /tmp tmpfs rw,noexec,nosuid 0 0" >> /etc/fstab
  304. # # Restore /tmp
  305. # cp -Rpf /tmpbackup/* /tmp/ >/dev/null 2>&1
  306. # #Remove old tmp dir
  307. # rm -rf /tmpbackup
  308. # # Backup /var/tmp and link it to /tmp
  309. # mv /var/tmp /var/tmpbackup
  310. # ln -s /tmp /var/tmp
  311. # # Copy the old data back
  312. # cp -Rpf /var/tmpold/* /tmp/ >/dev/null 2>&1
  313. # # Remove old tmp dir
  314. # rm -rf /var/tmpbackup
  315. # echo -e "\033[35;1m /tmp and /var/tmp secured using tmpfs. \033[0m"
  316. # } # End function secure_tmp_tmpfs
  317. # check_tmp_secured
  318. # if [ $? = 0 ]; then
  319. # secure_tmp_tmpfs
  320. # else
  321. # echo -e "\033[35;1mFunction canceled. /tmp already secured. \033[0m"
  322. # fi
  323. echo '
  324. ____ __
  325. / __ \_________ ____ ___ ____ / /_
  326. / /_/ / ___/ __ \/ __ `__ \/ __ \/ __/
  327. / ____/ / / /_/ / / / / / / /_/ / /_
  328. /_/ /_/ \____/_/ /_/ /_/ .___/\__/
  329. /_/
  330. '
  331. #installing better prompt and some goodies for root
  332. echo "\033[35;1mInstalling shell prompt for root \033[0m"
  333. sleep 3
  334. git clone git://github.com/bachy/dotfiles-server.git ~/.dotfiles-server && cd ~/.dotfiles-server && ./install.sh && cd ~
  335. source ~/.bashrc
  336. echo "done"
  337. echo "033[92;1m* * *033[Om"
  338. echo '
  339. __
  340. ___ ____ ____/ /
  341. / _ \/ __ \/ __ /
  342. / __/ / / / /_/ /
  343. \___/_/ /_/\__,_/
  344. '
  345. echo "\033[35;1m* * script done * * \033[0m"