Comments:"Securing Ubuntu - Josh Rendek"
URL:http://joshrendek.com/2013/01/securing-ubuntu/
Table of Contents
Initial Setup
Let’s login to our new machine and take some initial steps to secure our system. For this article I’m going to assume your username is ubuntu
.
If you need to, setup your sudoers file by adding the following lines:
/etc/sudoers1 ubuntu ALL=(ALL:ALL) ALL # put this in the "User privilege specification" sectionEdit your ~/.ssh/authorized_keys
and put your public key inside it. Make sure you can login without a password now once your key is in place.
Open up /etc/ssh/sshd_config
and make sure these lines exist to secure SSH:
Keep your current session open and restart sshd:
/etc/ssh/sshd_config1 sudo service ssh restartMake sure you can login from another terminal. If you can, move on.
Now we need to update and upgrade to make sure all of our packages are up to date and install two pre-requisites for later in the article: build-essential and ntp.
apt1 2 3 4 sudo apt-get update sudo apt-get install build-essential ntp sudo apt-get upgrade sudo rebootSetting up iptables and Fail2Ban
Fail2Ban
apt1 sudo apt-get install fail2banOpen up the fail2ban config and change the ban time, destemail, and maxretry:
/etc/fail2ban/jail.conf 1 2 3 4 5 6 7 8 9 10 11 12 13 14 [DEFAULT] ignoreip = 127.0.0.1/8 bantime = 3600 maxretry = 2 destemail = ubuntu@yourdomain.com action = %(action_mw)s [ssh] enabled = true port = ssh filter = sshd logpath = /var/log/auth.log maxretry = 2Now restart fail2ban.
/etc/fail2ban/jail.conf 1 sudo service fail2ban restartIf you try and login from another machine and fail, you should see the ip in iptables.
/etc/fail2ban/jail.conf 1 2 3 4 5 # sudo iptables -L Chain fail2ban-ssh (1 references) target prot opt source destination DROP all -- li203-XX.members.linode.com anywhere RETURN all -- anywhere anywhereiptables Rules
Here are my default iptables rules, it opens up port 80 and 443 for HTTP/HTTPS communication, and allows port 22. We also allow ping and then log all denied calls and then reject everything else. If you have other services you need to run, such as a game server or something else, you’ll have to add the rules to open up the ports in the iptables config.
/etc/iptables.up.rules 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 *filter # Accepts all established inbound connections -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT # Allows all outbound traffic # You could modify this to only allow certain traffic -A OUTPUT -j ACCEPT # Allows HTTP and HTTPS connections from anywhere (the normal ports for websites) -A INPUT -p tcp --dport 443 -j ACCEPT -A INPUT -p tcp --dport 80 -j ACCEPT # Allows SSH connections for script kiddies # THE -dport NUMBER IS THE SAME ONE YOU SET UP IN THE SSHD_CONFIG FILE -A INPUT -p tcp -m state --state NEW --dport 22 -j ACCEPT # Now you should read up on iptables rules and consider whether ssh access # for everyone is really desired. Most likely you will only allow access from certain IPs. # Allow ping -A INPUT -p icmp -m icmp --icmp-type 8 -j ACCEPT # log iptables denied calls (access via 'dmesg' command) -A INPUT -m limit --limit 5/min -j LOG --log-prefix "iptables denied: " --log-level 7 # Reject all other inbound - default deny unless explicitly allowed policy: -A INPUT -j REJECT -A FORWARD -j REJECT COMMITWe can load that up into iptables:
1 sudo iptables-restore < /etc/iptables.up.rulesMake sure it loads on boot by putting it into the if-up scripts:
/etc/network/if-up.d/iptables1 2 #!/bin/sh iptables-restore /etc/iptables.up.rulesNow make it executable:
1 chmod +x /etc/network/if-up.d/iptablesRebooting here is optional, I usually reboot after major changes to make sure everything boots up properly.
If you’re getting hit by scanners or brute-force attacks, you’ll see a line similar to this in your /var/log/syslog
:
Read only shared memory
A common exploit vector is going through shared memory (which can let you change the UID of running programs and other malicious actions). It can also be used as a place to drop files once an initial breakin has been made. An example of one such exploit is available here.
Open /etc/fstab/
:
Once you do this you need to reboot.
Setting up Bastille Linux
The Bastille Hardening program “locks down” an operating system, proactively configuring the system for increased security and decreasing its susceptibility to compromise. Bastille can also assess a system’s current state of hardening, granularly reporting on each of the security settings with which it works.Bastille Linux bastille-linux.sourceforge.net/… Bastille: Installation and Setup1 2 3 sudo apt-get install bastille # choose Internet site for postfix # configure bastille sudo bastilleAfter you run that command you’ll be prompted to configure your system, here are the options I chose:
Configuring Bastille
- File permissions module: Yes (suid)
- Disable SUID for mount/umount: Yes
- Disable SUID on ping: Yes
- Disable clear-text r-protocols that use IP-based authentication? Yes
- Enforce password aging? No (situation dependent, I have no users accessing my machines except me, and I only allow ssh keys)
- Default umask: Yes
- Umask: 077
- Disable root login on tty’s 1-6: No
- Password protect GRUB prompt: No (situation dependent, I’m on a VPS and would like to get support in case I need it)
- Password protect su mode: Yes
- default-deny on tcp-wrappers and xinetd? No
- Ensure telnet doesn’t run? Yes
- Ensure FTP does not run? Yes
- display authorized use message? No (situation dependent, if you had other users, Yes)
- Put limits on system resource usage? Yes
- Restrict console access to group of users? Yes (then choose root)
- Add additional logging? Yes
- Setup remote logging if you have a remote log host, I don’t so I answered No
- Setup process accounting? Yes
- Disable acpid? Yes
- Deactivate nfs + samba? Yes (situation dependent)
- Stop sendmail from running in daemon mode? No (I have this firewalled off, so I’m not concerned)
- Deactivate apache? Yes
- Disable printing? Yes
- TMPDIR/TMP scripts? No (if a multi-user system, yes)
- Packet filtering script? No (we configured the firewall previously)
- Finished? YES! & reboot
You can verify some of these changes by testing them out, for instance, the SUID change on ping:
Bastille: Verifying changes1 2 3 4 5 6 7 8 9 ubuntu@app1:~$ ping google.com ping: icmp open socket: Operation not permitted ubuntu@app1:~$ sudo ping google.com PING google.com (74.125.228.72) 56(84) bytes of data. 64 bytes from iad23s07-in-f8.1e100.net (74.125.228.72): icmp_req=1 ttl=55 time=9.06 ms ^C --- google.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 9.067/9.067/9.067/0.000 msSysctl hardening
Since our machine isn’t running as a router and is going to be running as an application/web server, there are additional steps we can take to secure the machine. Many of these are from the NSA’s security guide, which you can read in its entirety here.
/etc/sysctl.conf Source1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 # Protect ICMP attacks net.ipv4.icmp_echo_ignore_broadcasts = 1 # Turn on protection for bad icmp error messages net.ipv4.icmp_ignore_bogus_error_responses = 1 # Turn on syncookies for SYN flood attack protection net.ipv4.tcp_syncookies = 1 # Log suspcicious packets, such as spoofed, source-routed, and redirect net.ipv4.conf.all.log_martians = 1 net.ipv4.conf.default.log_martians = 1 # Disables these ipv4 features, not very legitimate uses net.ipv4.conf.all.accept_source_route = 0 net.ipv4.conf.default.accept_source_route = 0 # Enables RFC-reccomended source validation (dont use on a router) net.ipv4.conf.all.rp_filter = 1 net.ipv4.conf.default.rp_filter = 1 # Make sure no one can alter the routing tables net.ipv4.conf.all.accept_redirects = 0 net.ipv4.conf.default.accept_redirects = 0 net.ipv4.conf.all.secure_redirects = 0 net.ipv4.conf.default.secure_redirects = 0 # Host only (we're not a router) net.ipv4.ip_forward = 0 net.ipv4.conf.all.send_redirects = 0 net.ipv4.conf.default.send_redirects = 0 # Turn on execshild kernel.exec-shield = 1 kernel.randomize_va_space = 1 # Tune IPv6 net.ipv6.conf.default.router_solicitations = 0 net.ipv6.conf.default.accept_ra_rtr_pref = 0 net.ipv6.conf.default.accept_ra_pinfo = 0 net.ipv6.conf.default.accept_ra_defrtr = 0 net.ipv6.conf.default.autoconf = 0 net.ipv6.conf.default.dad_transmits = 0 net.ipv6.conf.default.max_addresses = 1 # Optimization for port usefor LBs # Increase system file descriptor limit fs.file-max = 65535 # Allow for more PIDs (to reduce rollover problems); may break some programs 32768 kernel.pid_max = 65536 # Increase system IP port limits net.ipv4.ip_local_port_range = 2000 65000 # Increase TCP max buffer size setable using setsockopt() net.ipv4.tcp_rmem = 4096 87380 8388608 net.ipv4.tcp_wmem = 4096 87380 8388608 # Increase Linux auto tuning TCP buffer limits # min, default, and max number of bytes to use # set max to at least 4MB, or higher if you use very high BDP paths net.core.rmem_max = 8388608 net.core.wmem_max = 8388608 net.core.netdev_max_backlog = 5000 net.ipv4.tcp_window_scaling = 1After making these changes you should reboot.
Setting up a chroot environment
We’ll be setting up a chroot environment to run our web server and applications in. Chroot’s provide isolation from the rest of the operating system, so even in the event of a application compromise, damage can be mitigated.
chroot: Installation and Setup 1 sudo apt-get install debootstrap dchrootNow add this to your /etc/schroot/schroot.conf
file, precise is the release of Ubuntu I’m using, so change it if you need to:
Now bootstrap the chroot with a minimal Ubuntu installation:
1 2 3 4 5 6 sudo debootstrap --variant=buildd --arch amd64 precise /var/chroot/ http://mirror.anl.gov/pub/ubuntu/ sudo cp /etc/resolv.conf /var/chroot/etc/resolv.conf sudo mount -o bind /proc /var/chroot/proc sudo chroot /var/chroot/ apt-get install ubuntu-minimal apt-get updateAdd the following to /etc/apt/sources.list
inside the chroot:
Let’s test out our chroot and install nginx inside of it:
1 2 apt-get update apt-get install nginxSecuring nginx inside the chroot
First thing we will do is add a www user for nginx to run under:
Adding a application user 1 2 3 4 sudo chroot /var/chroot useradd www -d /home/www mkdir /home/www chown -R www.www /home/wwwOpen up /etc/nginx/nginx.conf
and make sure you change user to www inside the chroot:
We can now start nginx inside the chroot:
1 2 sudo chroot /var/chroot service nginx startNow if you go to http://your_vm_ip/ you should see “Welcome to nginx!” running inside your fancy new chroot.
We also need to setup ssh to run inside the chroot so we can deploy our applications more easily.
Chroot: sshd 1 2 sudo chroot /var/chroot apt-get install openssh-server udevSince we already have SSH for the main host running on 22, we’re going to run SSH for the chroot on port 2222. We’ll copy over our config from outside the chroot to the chroot.
sshd config1 sudo cp /etc/ssh/sshd_config /var/chroot/etc/ssh/sshd_configNow open the config and change the bind port to 2222.
We also need to add the rules to our firewall script:
/etc/iptables.up.rules 1 2 # Chroot ssh -A INPUT -p tcp -m state --state NEW --dport 2222 -j ACCEPTNow make a startup script for chroot-precise in `/etc/init.d/chroot-precise:
/etc/init.d/chroot-precise1 2 3 4 5 6 mount -o bind /proc /var/chroot/proc mount -o bind /dev /var/chroot/dev mount -o bind /sys /var/chroot/sys mount -o bind /dev/pts /var/chroot/dev/pts chroot /var/chroot service nginx start chroot /var/chroot service ssh startSet it to executable and to start at boot:
1 2 sudo chmod +x /etc/init.d/chroot-precise sudo update-rc.d chroot-precise defaultsNext is to put your public key inside the .ssh/authorized_keys
file for the www user inside the chroot so you can ssh and deploy your applications.
If you want, you can test your server and reboot it now to ensure nginx and ssh boot up properly. If it’s not running right now, you start it: sudo /etc/init.d/chroot-precise
.
You should now be able to ssh into your chroot and main server without a password.
Extras
I would like to also mention the GRSecurity kernel patch. I had tried several times to install this (two different versions were released while I was writing this) and both make the kernel unable to compile. Hopefully they’ll fix these bugs and I’ll be able to update this article with notes on setting GRSecurity up as well.
I hope this article proved useful to anyone trying to secure a Ubuntu system, and if you liked it please share it!