How to Secure a LAMP Server

Posted
Comments 2

How to Secure a LAMP Server

.p Today I’ll show you how to secure your LAMP server from hackers and malicious bots. If you’ve been following my Ultimate LAMP Web Server on Ubuntu 22.04 series, this is a crucial step not to be missed. There are a ton of threats out there always looking to exploit a vulnerable web server, but today we’ll make sure yours is not a one of them. If you’re on a development server installed locally, you probably don’t need to do this step, but if you have a cloud server, then definitely do.

Contents

Prerequisites

Enable Automatic Updates

Let’s enable automatic updates for Ubuntu and all installed components. We do this by installing a package called unnatended-upgrades and then configure what packages will be automatically updates (Unattended Upgrades may already be installed as in Ubuntu 22.04):

sudo apt install unattended-upgrades

Next we check if the unattended-upgrades service is running:

sudo systemctl status unattended-upgrades.service
Check if the unattended-upgrades service is running

The open the configuration file:

sudo nano /etc/apt/apt.conf.d/50unattended-upgrades

The default configuration is great for most servers. There is only one option I recommend you change which is “reboot after upgrade”. This option will reboot if any packages require it. Scroll down and remove the two slashes // from this line, then change false to true:

Uncomment and change false to true

Then save ctrl + o, ENTER and exit nano ctrl + x.

You’ll need to restart the unattended-upgrades service:

sudo systemctl restart unattended-upgrades.service

Configure UFW Firewall

Ubuntu has a built-in firewall called Uncomplicated Firewall or UFW. This package is excellent for securing your web server, so let’s configure and enable the service. For those of you who setup your LAMP server using my guide, UFW will already be configured, so you can skip this section.

Let’s see what rules are available:

sudo ufw app list
UFW App List

We want to make a rule for OpenSSH first (it may already be enabled, it will tell you if it is):

sudo ufw allow OpenSSH

For Apache, you have three choices:

  • Apache – Opens just port 80 (insecure)
  • Apache Secure – Opens just port 443 (SSL secure)
  • Apache Full – Opens both ports 80 and ports 443

I recommend Apache Secure if you have an SSL certificate installed, otherwise use Apache Full

sudo ufw allow in "Apache Secure"

OR

sudo ufw allow in "Apache Full"

Let’s see what rules are enabled:

sudo ufw status
UFW Status

If you see OpenSSH and Apache Full or Apache Secure, you’re safe to enable the UFW service:

sudo ufw enable

Install Fail2Ban

Fail2Ban is a security service that scans log files to detect malicious behavior and bans/blocks the users IP address. Let’s install and configure the Fail2Ban service:

sudo apt install fail2ban

Before we edit the configuration file, let’s copy it so it’s not overwritten by system upgrades:

sudo cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local

Let’s edit the new config file:

sudo nano /etc/fail2ban/jail.local
The default Fail2Ban SSHD configuration

Change the [sshd] section to the following (this will give a maximum password retry of 5 before the user is banned for 1 day):

[sshd]

enabled  = true
port     = ssh
filter   = sshd
logpath  = /var/log/auth.log
maxretry = 5
bantime = 1d
New SSHD config for Fail2Ban

Then save ctrl + o, ENTER and exit nano ctrl + x.

Let’s restart the Fail2Ban service:

sudo systemctl restart fail2ban

Then we enable the Fail2Ban service at boot:

sudo systemctl enable fail2ban.service

Hide Apache Information

By default, Apache shows way too much information on error pages and headers, so let’s turn those options off, and disable directory listings by default. First, we create a custom config file with nano:

sudo nano /etc/apache2/conf-available/lockdown.conf

The copy/paste the following code inside the new document:

ServerTokens Prod
ServerSignature Off
TraceEnable Off
Options all -Indexes
Header unset ETag
Header always unset X-Powered-By
FileETag None

Then save ctrl + o, ENTER and exit nano ctrl + x.

Let’s enable the mod_headers module:

sudo a2enmod headers

Load the new configuration file:

sudo a2enconf lockdown.conf

The restart Apache:

sudo systemctl restart apache2

Install & Configure mod_security

The Apache mod_security module is a signature-based firewall that detects attacks like Cross Site Scripting, session hijacking, SQL injections and other malicious attacks. Let’s install the module and then configure it:

sudo apt install libapache2-mod-security2

Make a copy of the default configuration file:

sudo cp /etc/modsecurity/modsecurity.conf-recommended /etc/modsecurity/modsecurity.conf

Open the new config file with nano:

sudo nano /etc/modsecurity/modsecurity.conf

Then edit to change SecRuleEngine DetectionOnly to SecRuleEngine On:

Edit Mod Security config file

Then save ctrl + o, ENTER and exit nano ctrl + x.

We then restart apache:

sudo systemctl restart apache2

Download OWASP Core Rule Set

Visit the CoreRuleSet.org website to determine the latest release, then replace the URL with the latest version:

cd /tmp
wget https://github.com/coreruleset/coreruleset/archive/refs/tags/v3.3.2.tar.gz

Extract the file:

tar -xvf v3.3.2.tar.gz

Move the CRS setup example to your Mod Security directory:

sudo mv coreruleset-3.3.2/crs-setup.conf.example /etc/modsecurity/crs-setup.conf

Then copy the rules directory to the Mod Security directory too:

sudo mv coreruleset-3.3.2/rules/ /etc/modsecurity/

Edit your Apache configuration file to enable loading of the rules:

sudo nano /etc/apache2/mods-enabled/security2.conf

You should already have the line below, if not, add it:

IncludeOptional /etc/modsecurity/*.conf

Then add this line underneath it:

Include /etc/modsecurity/rules/*.conf

Comment out the last line:

# IncludeOptional /usr/share/modsecurity-crs/*.load
Edit Mod Security to load OWASP rules

Then save ctrl + o, ENTER and exit nano ctrl + x.

Open your websites Virtual Host file and add the following line between <VirtualHost: *:443> brackets:

SecRuleEngine On
Add line to your Virtual Host config file

Then save ctrl + o, ENTER and exit nano ctrl + x.

To apply the new rules, restart Apache:

sudo systemctl restart apache2

Let’s check if mod_security is up and running:

sudo apachectl -M | grep security
Check if Mod Security is working

Let’s test if mod_security is working. Copy/past the following code but replace <SERVER-IP/DOMAIN> with your servers IP or domain name:

curl https://<SERVER-IP/DOMAIN>/index.php?exec=/bin/bash

You should get a 403 Forbidden page:

403 Forbidden document

Install & Configure mod_evaisive

mod_evasive is an Apache module used to protect your web server from DOS (Denial of Service) and DDOS (Distributed Denial of Service) attacks, along with other brute-force tactics hackers use. Let’s install and configure mod_evasive:

sudo apt install libapache2-mod-evasive

Open the mod_evasive configuration file:

sudo nano /etc/apache2/mods-enabled/evasive.conf

Uncomment the lines as shown below and leave all settings at default except for email address, which you should change to your own:

mod_evasive configuration file

Then save ctrl + o, ENTER and exit nano ctrl + x.

Let’s create a log file directory for mod_evasive, change permissions, then restart Apache:

sudo mkdir /var/log/apache2/mod_evasive
sudo chown -R www-data: /var/log/apache2/mod_evasive
sudo systemctl restart apache2

Then we check mod_evasive is enabled:

sudo apachectl -M | grep evasive
Check if mod_evasive is enabled

Let’s test that mod_evasive is working by using the test script. You should get 400 Bad Request error messages:

perl /usr/share/doc/libapache2-mod-evasive/examples/test.pl
You should receive 400 Bad Request error message

Secure MySQL

If you haven’t yet run mysql_secure_installation, let’s run it now. This security hardening script will greatly increase your MySQL installation’s protection from hackers. If you’ve been following my guide The Ultimate Web Server, then you will already have set a MySQL root password and configured MySQL, so you can skip this step.

Login to MySQL using your Ubuntu root password:

sudo mysql -uroot -p

Then set a MySQL root password, replacing MyPassword with your own strong password:

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password by 'MyPassword';
exit;

Now you can run mysql_secure_installation:

sudo mysql_secure_installation

You will presented with the Validate Password Component first. This component can enforce strong passwords for all MySQL users. I usually choose to disable this in testing mode, but if you’re planning on using your server for a production environment, definitely enable it. If you do enable it, you’ll need to choose from three different levels of password complexity: low, medium and strong.

Validate Password Component

I suggest answering the questions as follows:

  • VALIDATE PASSWORD COMPONENTN or Y
  • Change the password for root ? – N
  • Remove anonymous users? – Y
  • Disallow root login remotely? – Y
  • Remove test database and access to it? – Y
  • Reload privilege tables now? – Y

Secure PHP

And finally, we secure the PHP environment because by default, PHP has some security issues. This section should only be done for production servers, if you’re in development, you can safely skip the entire PHP section.

Let’s find your loaded php.ini configuration file and open it:

php --ini | grep "Loaded Configuration File"
Find you loaded php.ini configuration file
sudo nano /etc/php/8.1/cli/php.ini

We will be changing the settings for a number of options, so to make it easier to find them, copy the option name (i.e. expose_php) to clipboard, then go back to nano and press ctrl + w, then paste the option and hit Enter, which will search the document and find the option for you. Otherwise it takes forever to find different options.

First, we disable remote code execution, then hide some information that PHP can give hackers, and set maximum execution time and memory limit for scripts:

allow_url_fopen = Off
allow_url_include = Off
expose_php = Off
display_errors = Off
mail.add_x_header = Off
max_execution_time = 30
max_input_time = 30
memory_limit = 40M

Then we disable some PHP functions that are potentially dangerous:

disable_functions = shell_exec,passthru,exec,phpinfo,popen,show_source,system,proc_open,allow_url_fopen,curl_exec,curl_multi_exec

Then save ctrl + o, ENTER and exit nano ctrl + x.

To apply the changes, restart Apache:

sudo systemctl restart apache2

Conclusion

I hope everything went well and your web server is now tightly secured. If you had any issues, hit me up in the comments, or socials/email.

Newsletter Signup







Privacy Policy

See Also

Further Reading

Author
Categories Ubuntu

Comments

  1. I’ve been following your wonderfully created tutorials on setting up an Ubuntu 22.04 web server. All has been going great until I got to Download OWASP Core Rule Set, particularly towards the end of that section with sudo systemctl. restart apache2.

    I get the following error: Job for apache2.service failed because the control process exited with error code.
    See “systemctl status apache2.service” and “journalctl -xeu apache2.service” for details.

    When I run systemctl status apache2.service I get the following:
    × apache2.service – The Apache HTTP Server Loaded: loaded (/lib/systemd/system/apache2.service; enabled; vendor preset: enabled) Active: failed (Result: exit-code) since Thu 2022-08-18 20:23:02 UTC; 8s ago Docs: https://httpd.apache.org/docs/2.4/ Process: 1291 ExecStart=/usr/sbin/apachectl start (code=exited, status=1/FAILURE) CPU: 27ms

    Aug 18 20:23:02 ip-172-31-17-162 systemd[1]: Starting The Apache HTTP Server…
    Aug 18 20:23:02 ip-172-31-17-162 apachectl[1294]: apache2: Syntax error on line 147 of /etc/apache2/apache2.conf: Syntax er>
    Aug 18 20:23:02 ip-172-31-17-162 apachectl[1291]: Action ‘start’ failed.
    Aug 18 20:23:02 ip-172-31-17-162 apachectl[1291]: The Apache error log may have more information.
    Aug 18 20:23:02 ip-172-31-17-162 systemd[1]: apache2.service: Control process exited, code=exited, status=1/FAILURE
    Aug 18 20:23:02 ip-172-31-17-162 systemd[1]: apache2.service: Failed with result ‘exit-code’.
    Aug 18 20:23:02 ip-172-31-17-162 systemd[1]: Failed to start The Apache HTTP Server.

    line 147 of /etc/apache2/apache2.conf reads: IncludeOptional mods-enabled/*.conf

    any ideas?

  2. (Author)

    Hi Gary, sorry for the late reply (long story but to do with new CMS). Did you finish up working out a solution? I can’t find anything when searching the error, so if you could look in the apache log: /var/log/apache2/error.log and see if it gives the specific error? cheers, Rich

Comment

Enter your comment below. Fields marked * are required. You must preview your comment before submitting it.





PLEASE NOTE: You must preview a comment before submitting

Comments use Textile formatting