Snort IDS installation
Intrusion Detection System (IDS) – Snort
Contents
Requirements
- Database server (MySQL). See MySQL server
SNORT installation
Requirements
You need to add a new MySQL database and user for snort.
hint: you can use PHPMyAdmin or MySQL Workbench to do so!
Installation
Packages
apt-get install snort-doc snort-mysql snort-rules-default snort-common snort-common-libraries oinkmaster
During the installation you will be ask for the $HOME_NET.
- If plan to protect a network, use the Network IP@/Submask
- For a single computer put IP@/32. Do that for servers that are hosted somewhere on the cloud (OVH, TripNet, ...).
Populate database
You have to use a MySQL script to init database schema and root content.
cd /usr/share/doc/snort-mysql
zcat create_mysql.gz | mysql -u snort -h localhost -p snort
...if ok, you will not see anything
Check that the database is OK.
If so, remove the pending installation flag:
rm /etc/snort/db-pending-config
Initial Configuration
Reconfigure Snort:
dpkg-reconfigure snort-mysql
Caution: you need to carefully select theses options:
- Do NOT use the “promiscuous” mode if your server is not within your LAN ;
- Use the database log and put the required arguments.
Check the configuration!
- vim /etc/snort/snort.conf
→ line 46: var HOME_NET IP@/submask !! You need to specify something here !! → line 49: var EXTERNAL_NET !$HOME_NET
!! Do not do this on DEBIAN !! Uncomment and complete: output database: log, mysql, user=root password=test dbname=db host=localhost
Caution: if you’re using custom ports configuration for some of your severs : You have to adjust the port number of each services in this config file !
You might encounter some errors, don't panic ! :-) Adjust snort rules Source: http://doc.ubuntu-fr.org/snort
Rules web-site: http://rules.emergingthreats.net/open-nogpl/
Get latest rules set
- vim /etc/oinkmaster.conf
just comment line 22 and use:
url = http://rules.emergingthreats.net/open-nogpl/snort-2.8.4/emerging.rules.tar.gz
Download and install rules
- oinkmaster -o /etc/snort/rules
Automatic rules update
- crontab -e
Add 55 13 * * 6 /usr/sbin/oinkmaster -o /etc/snort/rules
Add rules to Snort
- echo "#EmergingThreats.net Rules" >> /etc/snort/snort.conf
- cd /etc/snort/rules
- for i in `ls emerging*` ; do echo "include \$RULE_PATH/"$i >> /etc/snort/snort.conf ; done;
Check result
- vim /etc/snort/snort.conf
→ You should see lots of emerging rules
Advice: you should comment the following
- include $RULE_PATH/emerging-botcc-BLOCK.rules
- include $RULE_PATH/emerging-compromised-BLOCK.rules
- include $RULE_PATH/emerging-drop-BLOCK.rules
- include $RULE_PATH/emerging-dshield-BLOCK.rules
- include $RULE_PATH/emerging-rbn-BLOCK.rules
- include $RULE_PATH/emerging-sid-msg.map
- include $RULE_PATH/emerging-sid-msg.map.txt
Start snort To test your configuration:
- snort -c /etc/snort/snort.conf
You should see a little pig :) (Ctrl+C to stop it)
If there's some errors, then you can check the /var/log/syslog > You might have to comment some rules, depending on your configuration.
Managing rules All the rules are not enable by default. According to your own policy, you might want to enable some specifics rules. Have a look to your configuration file
- vim /etc/snort/snort.conf
→ line 839: enable the required policies • Policy.rules • Community-policy.rules
Disable specific rules
- vim /etc/snort/snort.conf
You might be spam by false alerts such as “COMMUNITY SIP TCP/IP message flooding directed to SIP proxy” To disable theses, you have to edit the corresponding ruleset community-sip.rules
- -voip.rules
- -sip.rules
Snort Graphical Front-End
Required programs
Add-ons, to display graphs and statistics
- pear upgrade
- pear install Image_Color
- pear install Image_Graph
- pear install Mail
- pear install Mail_Mime
Automatic installation
- apt-get install acidbase
→ Use the automatic configuration of the database with “dbconfig-common” MySQL UNIX Socket
Manual installation
Requirement ADODB (Database abstraction layer for PHP) Official website: http://adodb.sourceforge.net/ Downloads: http://sourceforge.net/projects/adodb/files/
- wget fileURL
- tar -xzvf adodb-php.tar.gz
- mv adodb5 /etc/php5
→ ADODB is now in /etc/php5/adodb5
Download BASE Official website: http://base.secureideas.net/ Download last version from the official website, even if it's a late one (since 2010)
Extract it to: /var/www/default/base
Create MySQL BASE tables into SNORT database.
- cd /var/www/default/base/sql
Run one of the following scripts (there are the same) create_base_tbls_mysql.sql acid2base_tbls_mysql.sql
Installation
URL/base/setup/index.php
Step 1 of 5 • Language • Path to adodb: /etc/php5/adodb5 (manual) /usr/share/php/adodb
Step 2 of 5 MySQL configuration : please re-use the SNORT database
Step 3 of 5 It's not mandatory to create a new user
Step 4 of 5 Create required tables
Configuration
Edit the specific acidbase database settings
- vim /var/www/website/webapps/acidbase/base_conf.php
$BASE_urlpath = '/webapps/acidbaseids';
$action_email_smtp_host = 'smtp.example.com'; # smtp.gmail.com:587 $action_email_smtp_localhost = 'serverHostName'; # extranet.daxiongmao.eu $action_email_smtp_auth = 1;
$action_email_smtp_user = 'username';
$action_email_smtp_pw = 'password';
$action_email_from = 'snort@serverDomain.com'; # snort@extranet.daxiongmao.eu $action_email_subject = 'BASE Incident Report';
$action_email_msg = ;
$action_email_mode = 0;
Create the tables. https://server1.example.com/acidbase/base_db_setup.php
Adjust your php.ini settings
- vim /etc/php5/cli/php.ini
You need to adjust the “error reporting” variable as follow error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
!! For cherokee you've to edit your PHP interpreter settings !! → vServers → target server → Rule management → select PHP rule → handler tab • Disable error Handler •
Reload Apache 2
- /etc/init.d/apache2 reload
Setup ACID https://server1.example.com/acidbase/setup/index.php
Delete acid bug You might have to disable some settings in /usr/share/acidbase/includes/base_cache.inc.php, lines 556 && 562. It might triggers false alerts. Important reminders You need to supervise your installation and check the log regularly!! You need to adjust your configuration to avoid too many false positive, keeping only the real alerts