Hostrs

< All Topics
Print

ModSecurity Configuration

  • :Log in to your whm>>security centre >> Mod Security Configuration
Step 1: Install and find ModSecurity Configuration files!

The latest cPanel/WHM software already comes with Mod Security pre-installed, you can also configure it through WHM, but to have more control you need to know where the Mod Security configuration files are located on the server. Configuration files are as follows:

  • /etc/apache2/con f.d/modsec2.conf
  • /etc/apache2/conf.d/modsec/modsec2.cpanel.conf
  • /etc/apache2/conf. modules.d/800-mod_security2.conf  – Just to load the Mod Security module in apache.

These are most important files you should care about, all of them are managed by WHM it self, and if you make any changes inside these files manually they will be lost. So you have to make the change via GUI interface of WHM. But their is one file made available to us from WHM on which changes can be made, and it is located at :

  • /etc/apache2/conf.d/mod sec/modsec2.user.conf

This file can be manually edited by us and our changes will not be lost.

Step 2: Configure from WHM!

Even though ModSecurity is already installed with cPanel but you need to configure it before it can start working properly.

modsecurity-whm

    1. Click ‘Mod Security Configuration’ with in Security Center.
    2. Audit Log -> Log All Transactions.
  1. Connection Engine -> Process the rules.
  2. Rules Engine -> Process the rules

Make sure your settings looks like the settings in the image above, and click ‘Save’.

Step 3: Add your first Rule!

You are now ready to add your first rule and block the malicious traffic. ????

modsecurity-rulelist

    1. Click ‘ModSecurity Tools’ under Security Center.
  1. Click the ‘Rules List’ on the right side of the window.

Your current window will now look like this:

add-rule-modsecurity

Click ‘Add Rule’ on the right side of the window. You will now be presented with this box:

modsecurity-rulebox

Paste the following text in the ‘Rule Text’ box:

Sec Rule ARGS ABC “phase:2,id:’101021‘,log,deny,status:503

This rules simply says that if any of your arguments contains a string ‘ABC’ please block the web request and report to the logs that this request with rule id=’101021‘ has been blocked by Mod Securtiy. Once this rule is added click ‘Save’.

Step 4: Test rule and view the logs

Now you need to make sure that the rule that you have just added is working properly, visit any site hosted on the server and add following at the end of the request

?test=ABC

Your complete URL might look like:

http://check.cyberpersons.com/?test=ABC

Upon visiting this url, you must have something like this displayed on your browser:

503-service-unavailable

If you see this page, that means your ModSecurity rule is working correctly, you can than see all attacks towards your server as well.

attack-logs

As you can see in the image above that the attack we just simulated is logged inside WHM, just click ‘ModSecurity Tools’ under security center and you can see all the attack logs. You can see following details about the attack:

    • URL For the web attack.
    • How was this request handled.
  • Which rule this attack matched against.
Step 5: Install Vendors!

Even though everything seems to be on track, but we don’t have any rules that can filter the large amount of malicious traffic. cPanel/WHM already have one vendor installed which you can enable.

Vendor provides you with standard set of rules that you can use without any technical knowledge, and it is very important that you should atleast use the cPanel/WHM provided vendor.

modsecurity-vendor

    1. Click ‘ModSecurity Vendors’.
    2. Just click ‘On’.

You successfully enabled OWASP Mod Security Core rule set, this is rule set is free of use.

Step 6 (Optional): Add Rules Manually in Bulk!

If you have written couple hundred mod security rules manually and want to add them in your rule set you can do so. Just open the following file with choice of your file editor:

/etc/apache2/conf.d/mod sec/modsec2.user.conf

Now paste all your rules and restart apache from WHM. Your new rules are now successfully activated and ready to g