Ubuntu Linux Hardy does not have a precompliled apt-get package for mod-security. So here is how to do this manually.
/etc/init.d/apache2 stop
a2enmod unique_id
If you don't have a2enmod use these two steps:
cd /etc/apache2/mods-enabled ln -s ../mods-available/unique_id.load unique_id.load
apt-get install libapr1 apt-get install libaprutil1 apt-get install liblua5.1-0 apt-get install apache2-threaded-dev apt-get install libxml2 apt-get install libxml2-dev
Go to modsecurity Open Source Web Application Firewall
[Note the location where mod_security2.so file was created. It is usually at /usr/lib/apache2/modules/mod_security2.so]
[Typical output]
root@ub1:~/temp_files/ms/modsecurity-apache_2.5.12/apache2# make install build/apxs-wrapper -i mod_security2.la /usr/share/apache2/build/instdso.sh SH_LIBTOOL='/usr/share/apr-1.0/build/libtool' mod_security2.la /usr/lib/apache2/modules /usr/share/apr-1.0/build/libtool --mode=install cp mod_security2.la /usr/lib/apache2/modules/ cp .libs/mod_security2.so /usr/lib/apache2/modules/mod_security2.so cp .libs/mod_security2.lai /usr/lib/apache2/modules/mod_security2.la PATH="$PATH:/sbin" ldconfig -n /usr/lib/apache2/modules ---------------------------------------------------------------------- Libraries have been installed in: /usr/lib/apache2/modules If you ever happen to want to link against installed libraries in a given directory, LIBDIR, you must either use libtool, and specify the full pathname of the library, or use the `-LLIBDIR' flag during linking and do at least one of the following: - add LIBDIR to the `LD_LIBRARY_PATH' environment variable during execution - add LIBDIR to the `LD_RUN_PATH' environment variable during linking - use the `-Wl,--rpath -Wl,LIBDIR' linker flag - have your system administrator add LIBDIR to `/etc/ld.so.conf' See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- chmod 644 /usr/lib/apache2/modules/mod_security2.so
LoadModule security2_module /usr/lib/apache2/modules/mod_security2.so
Enable mod_security
a2enmod mod_security2
This is a free predefined rule set for mod_security. Here are the steps:
<IfModule security2_module> Include /etc/apache2/mod-security2/modsecurity_crs_10_config.conf Include /etc/apache2/mod-security2/base_rules/*.conf </IfModule>
/etc/init.d/apache2 start
a2dismod mod_security2 /etc/init.d/apache2 force-reload