How To Secure An Ubuntu 12.04 LTS Server - Part 1 The Basics - How To - The Fan Club - Dynamic Desig
How To Secure An Ubuntu 12.04 LTS Server - Part 1 The Basics - How To - The Fan Club - Dynamic Desig
This guide is based on various community forum posts and webpages. Special thanks to all. All
comments and improvements are very welcome as this is purely a personal experimental project at this
point and must be considered a work in progress.
11.
12.
13.
14.
15.
16.
17.
18.
19.
Requirements:
Ubuntu 12.04 LTS or later server with a standard LAMP stack installed.
1. Firewall - UFW
A good place to start is to install a Firewall.
UFW - Uncomplicated Firewall is a basic firewall that works very well and easy to configure with its
Firewall configuration tool - gufw, or use Shorewall, fwbuilder, or Firestarter.
Use Firestarter GUI to configure your firewall or refer to the Ubuntu Server Guide, UFW manual
pages (http://manpages.ubuntu.com/manpages/precise/en/man8/ufw.8.html) or the Ubuntu UFW community
documentation (http://help.ubuntu.com/community/UFW) .
Install UFW and enable, open a terminal window and enter :
sudo vi /etc/fstab
Add the following line and save. You will need to reboot for this setting to take effect :
Note : This only is works in Ubuntu 12.04 - For later Ubuntu versions
replace /dev/shm with /run/shm
Save and Reboot when done
tmpfs
/dev/shm
tmpfs
defaults,noexec,nosuid
3. SSH Hardening - key based login, disable root login and change port.
The best way to secure SSH is to use public/private key based login. See SSH/OpenSSH/Keys
If you have to use password authentication, the easiest way to secure SSH is to disable root login and
change the SSH port to something different than the standard port 22.
Before disabling the root login create a new SSH user and make sure the user belongs to the admin
group (see step 4. below regarding the admin group).
if you change the SSH port keep the port number below 1024 as these are priviledged ports that can
only be opened by root or processes running as root.
If you change the SSH port also open the new port you have chosen on the firewall and close port 22.
Open a Terminal Window and enter :
sudo vi /etc/ssh/sshd_config
sudo vi /etc/apache2/mods-available/ssl.conf
sudo vi /etc/sysctl.conf
Edit the /etc/sysctl.conf file and un-comment or add the following lines :
# IP Spoofing protection
net.ipv4.conf.all.rp_filter = 1
net.ipv4.conf.default.rp_filter = 1
# Ignore ICMP broadcast requests
net.ipv4.icmp_echo_ignore_broadcasts = 1
# Disable source packet routing
net.ipv4.conf.all.accept_source_route = 0
net.ipv6.conf.all.accept_source_route = 0
net.ipv4.conf.default.accept_source_route = 0
net.ipv6.conf.default.accept_source_route = 0
# Ignore send redirects
net.ipv4.conf.all.send_redirects = 0
net.ipv4.conf.default.send_redirects = 0
# Block SYN attacks
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_max_syn_backlog = 2048
net.ipv4.tcp_synack_retries = 2
net.ipv4.tcp_syn_retries = 5
# Log Martians
net.ipv4.conf.all.log_martians = 1
net.ipv4.icmp_ignore_bogus_error_responses = 1
# Ignore ICMP redirects
net.ipv4.conf.all.accept_redirects = 0
net.ipv6.conf.all.accept_redirects = 0
net.ipv4.conf.default.accept_redirects = 0
net.ipv6.conf.default.accept_redirects = 0
# Ignore Directed pings
net.ipv4.icmp_echo_ignore_all = 1
sudo sysctl -p
7. Disable Open DNS Recursion and Remove Version Info - BIND DNS
Server.
Open a Terminal and enter the following :
sudo vi /etc/bind/named.conf.options
recursion no;
version "Not Disclosed";
Restart BIND DNS server. Open a Terminal and enter the following :
8. Prevent IP Spoofing.
Open a Terminal and enter the following :
sudo vi /etc/host.conf
order bind,hosts
nospoof on
sudo vi /etc/php5/apache2/php.ini
disable_functions = exec,system,shell_exec,passthru
register_globals = Off
expose_php = Off
display_errors = Off
track_errors = Off
html_errors = Off
magic_quotes_gpc = Off
sudo vi /etc/apache2/conf.d/security
ServerTokens Prod
ServerSignature Off
TraceEnable Off
Header unset ETag
FileETag None
13. Scan logs and ban suspicious hosts - DenyHosts and Fail2Ban.
DenyHosts (http://denyhosts.sourceforge.net/) is a python program that automatically blocks SSH attacks
by adding entries to /etc/hosts.deny. DenyHosts will also inform Linux administrators about offending
hosts, attacked users and suspicious logins.
Open a Terminal and enter the following :
After installation edit the configuration file /etc/denyhosts.conf and change the email, and other
settings as required.
To edit the admin email settings open a terminal window and enter:
sudo vi /etc/denyhosts.conf
ADMIN_EMAIL = root@localhost
SMTP_HOST = localhost
SMTP_PORT = 25
#SMTP_USERNAME=foo
#SMTP_PASSWORD=bar
SMTP_FROM = DenyHosts nobody@localhost
#SYSLOG_REPORT=YES
After installation edit the configuration file /etc/fail2ban/jail.local and create the filter rules as
required.
To edit the settings open a terminal window and enter:
sudo vi /etc/fail2ban/jail.conf
Activate all the services you would like fail2ban to monitor by changing enabled = false to enabled =
true
For example if you would like to enable the SSH monitoring and banning jail, find the line below and
change enabled from false to true. Thats it.
[ssh]
enabled
port
filter
logpath
maxretry
=
=
=
=
=
true
ssh
sshd
/var/log/auth.log
3
If you have selected a non-standard SSH port in step 3 then you need to change the port setting in
fail2ban from ssh which by default is port 22, to your new port number, for example if you have
chosen 1234 then port = 1234
[ssh]
enabled
port
filter
logpath
maxretry
=
=
=
=
=
true
<ENTER YOUR SSH PORT NUMBER HERE>
sshd
/var/log/auth.log
3
If you would like to receive emails from Fail2Ban if hosts are banned change the following line to
your email address.
destemail = root@localhost
action = %(action_)s
to:
action = %(action_mwl)s
You can also create rule filters for the various services that you would like fail2ban to monitor that
is not supplied by default.
sudo vi /etc/fail2ban/jail.local
Good instructions on how to configure fail2ban and create the various filters can be found on
When done with the configuration of Fail2Ban restart the service with :
Then for basic configuration see How to install PSAD Intrusion Detection on Ubuntu 12.04 LTS
server and follow from step 2:
sudo chkrootkit
To update and run RKHunter. Open a Terminal and enter the following :
To email a logwatch report for the past 7 days to an email address, enter the following and replace
[email protected] with the required email. :
sudo logwatch --mailto [email protected] --output mail --format html -range 'between -7 days and today'
sudo apparmor_status
sudo tiger
Tags:
Ubuntu 12.04 Ubuntu Security ufw SSH sysctl DNS IP Spoofing PHP
Security ModSecurity ModEvasive DenyHosts Fail2Ban PSAD RKHunter NMap LogWatch Apparmo
r SELinux Tiger RootKits Log Files
Comments
Why do you suggest "magic
Submitted by steph (not verified) on Sat, 2013-03-09 11:29
Why do you suggest "magic_quotes_gpc = On" ? When you read php.ini comments, it is written
that the Off value is for production. Thanks
Thank you for pointing that out - It should be off, as this feature has been DEPRECATED as of
PHP 5.3.0 and REMOVED as of PHP 5.4.0. (see :
http://www.php.net/manual/en/security.magicquotes.php)
This is a nice tutorial, quick and easy, less explained, thanks for that! What i missed here also is
the security of email services like postfix and generally a anti virus tool. I mean use of clamav,
postgrey and so on. It would be nice if you spent time to write a part for that ;-) One that i
believe is also required for good security is to install suhosin for php. It would be nice if you add
it to this guide, and how to configure it with minimal settings. Also speak about
disabling/enabling modules in php that are mostly not used, or modules which can be turned off
and on for special applications. Another thing i ever see is enabled mods in apache that nobody
uses (which can be simply disabled). It would be nice if you speak about what is really needed,
and how to disable/enable unused ones. ModEvasive is also not really needed in favour of
ModSecurity, which can also do DDoS prevention for you. I did not test the rules of OWASP
CRS yet since they are stated as experimental, but they look clear to me. Take a look to file
"modsecurity_crs_11_dos_protection". I use similar ones in production environment...
related content
How to secure an Ubuntu 12.04 LTS server - Part 2 The GUI installer script
How to install apache2 mod_security and mod_evasive on Ubuntu 12.04 LTS server
more
(http://www.ubuntu.com/)
about us
privacy policy
sitemap
contact