Intrusion Detection using Snort

From Alpine Linux

Jump to: navigation, search
Underconstruction clock icon gray.svg
This material is work-in-progress ...

Do not follow instructions here until this notice is removed.
(Last edited by Dubiousjim on 24 Mar 2012.)

This guide will set up (list subject to change):

This guide will assume:


Contents

Get Development Packages

Install Alpine and Pre-packaged components

    apk add alpine-sdk mysql-dev php-mysql lighttpd php-xml php-pear libpcap-dev php-gd pcre-dev wireshark tcpdump tcpflow cvs bison flex


Download Non-Packaged Applications

Download the following packages

For the purpose of this document we will assume you download these files to /usr/src.

Download snort from www.snort.org. We used version 2.8.6.1 in this document.
Download the snort rules from http://www.snort.org/snort-rules/
Download BASE from http://sourceforge.net/projects/secureideas/files/BASE/base-1.4.5/base-1.4.5.tar.gz/download
Download adodb5 from http://sourceforge.net/projects/adodb/files/adodb-php5-only/adodb-511-for-php5/adodb511.zip/download

Compile Snort

Uncompress snort with something like:

   tar -zxvf snort-2.8.6.1.tar.gz

Then do the following:

   cd snort-2.8.6.1
   ./configure -enable-dynamicplugin --with-mysql
   make
   make install

Configure Snort and Ruleset

   mkdir /etc/snort
   cd /etc/snort
   cp /usr/src/snort-2.8.6.1/etc/* .
   mv /usr/src/snortrules-snapshot-2861.tar.gz /etc/snort/.
   tar -zxvf /usr/src/snortrules-snapshot-2861.tar.gz

Now edit the snort.conf file:

   vi snort.conf

and change the following:

output database: log, mysql, user=root password=yoursecretpassword dbname=snort host=localhost
preprocessor http_inspect: global iis_unicode_map unicode.map 1252 compress_depth 20480 decompress_depth 20480
and remove from "compress_depth" to the end of the line. When done, the line will read:
preprocessor http_inspect: global iis_unicode_map unicode.map 1252
inspect_gzip \
and remove it.

Start and Setup MySQL

(Need to add detail here on starting up MySQL for the first time)

   /usr/bin/mysql_install_db --user=mysql
   rc-update add mysql
   /etc/init.d/mysql start
   /usr/bin/mysqladmin -u root password 'password'  (set password to the same password you specified in the snort.conf file)
   mysql -u root -p

Once in mysql, type the following commands:

   mysql> create database snort;
   mysql> exit

Now create the database schema:

   mysql -D snort -u root -p < /usr/src/snort-2.8.6.1/schemas/create_mysql

Configure PHP and PEAR

Edit /etc/php/php.ini and add the following under "Dynamic Extensions".

   extension=mysql.so
   extension=gd.so

Save and exit. From the command line, type the following:

   pear install Image_Color
   pear install Image_Canvas-alpha
   pear install Image_Graph-alpha
   pear install mail
   pear install mail_mime

Start Apache or lighttpd

Need to decide which of these to use in production.

Setup BASE

   mv /usr/src/adodb5 /var/www/localhost/htdocs/.
   mv /usr/src/base-1.4.5/* /var/www/localhost/htdocs/.

Now, open your web browser and navigate to http://X.X.X.X/setup (where x.x.x.x is your server's IP address)

Click continue on the first page.
Step 1 of 5: Enter the path to ADODB.
This is /var/www/localhost/htdocs/adodb5.
Step 2 of 5:
Database type = MySQL, Database name = snort, Database Host = localhost, Database username = root, Database Password = YOUR_PASSWORD
Step 3 of 5: If you want to use authentication enter a username and password here.
Step 4 of 5: Click on Create BASE AG.
Step 5 of 5: one step 4 is done at the bottom click on Now continue to step 5.
Copy the text on the screen, and then paste into a new file named /var/www/localhost/htdocs/base_conf.php. Save that file.


Configure Barnyard

To improve performance.

Personal tools
Namespaces
Variants
Actions
Welcome
Services
Wiki
Toolbox