1#!/bin/sh 2#- 3# Copyright (c) 2016 Bartek Rutkowski 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions 8# are met: 9# 1. Redistributions of source code must retain the above copyright 10# notice, this list of conditions and the following disclaimer. 11# 2. Redistributions in binary form must reproduce the above copyright 12# notice, this list of conditions and the following disclaimer in the 13# documentation and/or other materials provided with the distribution. 14# 15# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25# SUCH DAMAGE. 26# 27# $FreeBSD$ 28 29: ${DIALOG_OK=0} 30 31set_aslr_sysctls() 32{ 33 for bit in 32 64; do 34 if ! sysctl -Nq kern.elf$bit.aslr.enable >/dev/null; then 35 continue 36 fi 37 cat >> $BSDINSTALL_TMPETC/sysctl.conf.hardening <<-EOF 38 kern.elf$bit.aslr.enable=1 39 kern.elf$bit.aslr.pie_enable=1 40 kern.elf$bit.aslr.honor_sbrk=0 41 EOF 42 done 43} 44 45echo -n > $BSDINSTALL_TMPETC/rc.conf.hardening 46echo -n > $BSDINSTALL_TMPETC/sysctl.conf.hardening 47echo -n > $BSDINSTALL_TMPBOOT/loader.conf.hardening 48 49exec 3>&1 50FEATURES=$( dialog --backtitle "FreeBSD Installer" \ 51 --title "System Hardening" --nocancel --separate-output \ 52 --checklist "Choose system security hardening options:" \ 53 0 0 0 \ 54 "0 hide_uids" "Hide processes running as other users" ${hide_uids:-off} \ 55 "1 hide_gids" "Hide processes running as other groups" ${hide_gids:-off} \ 56 "2 hide_jail" "Hide processes running in jails" ${hide_jail:-off} \ 57 "3 read_msgbuf" "Disable reading kernel message buffer for unprivileged users" ${read_msgbuf:-off} \ 58 "4 proc_debug" "Disable process debugging facilities for unprivileged users" ${proc_debug:-off} \ 59 "5 random_pid" "Randomize the PID of newly created processes" ${random_pid:-off} \ 60 "6 clear_tmp" "Clean the /tmp filesystem on system startup" ${clear_tmp:-off} \ 61 "7 disable_syslogd" "Disable opening Syslogd network socket (disables remote logging)" ${disable_syslogd:-off} \ 62 "8 disable_sendmail" "Disable Sendmail service" ${disable_sendmail:-off} \ 63 "9 secure_console" "Enable console password prompt" ${secure_console:-off} \ 64 "10 disable_ddtrace" "Disallow DTrace destructive-mode" ${disable_ddtrace:-off} \ 65 "11 enable_aslr" "Enable address layout randomization" ${enable_aslr:-off} \ 662>&1 1>&3 ) 67exec 3>&- 68 69for feature in $FEATURES; do 70 case "$feature" in 71 hide_uids) 72 echo security.bsd.see_other_uids=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 73 ;; 74 hide_gids) 75 echo security.bsd.see_other_gids=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 76 ;; 77 hide_jail) 78 echo security.bsd.see_jail_proc=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 79 ;; 80 read_msgbuf) 81 echo security.bsd.unprivileged_read_msgbuf=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 82 ;; 83 proc_debug) 84 echo security.bsd.unprivileged_proc_debug=0 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 85 ;; 86 random_pid) 87 echo kern.randompid=1 >> $BSDINSTALL_TMPETC/sysctl.conf.hardening 88 ;; 89 clear_tmp) 90 echo 'clear_tmp_enable="YES"' >> $BSDINSTALL_TMPETC/rc.conf.hardening 91 ;; 92 disable_syslogd) 93 echo 'syslogd_flags="-ss"' >> $BSDINSTALL_TMPETC/rc.conf.hardening 94 ;; 95 disable_sendmail) 96 echo 'sendmail_enable="NONE"' >> $BSDINSTALL_TMPETC/rc.conf.hardening 97 ;; 98 secure_console) 99 sed "s/unknown off secure/unknown off insecure/g" $BSDINSTALL_CHROOT/etc/ttys > $BSDINSTALL_TMPETC/ttys.hardening 100 ;; 101 disable_ddtrace) 102 echo 'security.bsd.allow_destructive_dtrace=0' >> $BSDINSTALL_TMPBOOT/loader.conf.hardening 103 ;; 104 enable_aslr) 105 set_aslr_sysctls 106 ;; 107 esac 108done 109 110