Getting started
Q. How do you keep track of authorized and unauthorized activity on your server?
A. OSSEC is one of the best current tools to monitor any suspicious activity.
OSSEC is an open-source, host-based intrusion detection system (HIDS) that performs log analysis, integrity checking, rootkit detection, time-based alerting, and active response. It can be used to monitor one server or thousands of servers in a server/agent mode.
If properly configured, OSSEC can give you a real-time view of what’s happening on your server.
This tutorial was made to show you how to install and configure OSSEC.
What are the benefits of OSSEC?
Below is an example of an email notification from OSSEC, showing that the file /var/ossec/etc/ossec.confwas modified.
OSSEC HIDS Notification.
2014 Nov 29 09:45:15
Received From: kuruji->syscheck
Rule: 552 fired (level 7) -> "Integrity checksum changed again (3rd time)."
Portion of the log(s):
Integrity checksum changed for: '/var/ossec/etc/ossec.conf'
Size changed from '7521' to '7752'
If you received such an alert, and you were not expecting that file to change, then you know that something unauthorized has happened on your server.
Here’s another example email alert from OSSEC, showing that the file /etc/ossec/testossec.txt was deleted.
OSSEC HIDS Notification.
2014 Nov 29 10:56:14
Received From: kuruji->syscheck
Rule: 553 fired (level 7) -> "File deleted. Unable to retrieve checksum."
Portion of the log(s):
File /etc/ossec/testossec.txt was deleted. Unable to retrieve checksum.
Again, if you did not delete the file, you should figure out what is happening on your server.
It also has more than just monitoring as we mentions before, read on to learn more.
What you will need.
This tutorial assumes you have a server with root access and a command line interface like putty available for the server.
- Centos server
- This tutorial is easiest to do as the root user:
sudo su
- Installation of OSSEC involves some compiling, so you need
gcc
andmake
installed. You can install both by installing a single package calledbuild-essential
- You also need to install a package called
inotify-tools
, which is required for real-time alerting to work.
To install all required packages, first update the server:
apt-get update
Then install the packages:
apt-get install build-essential inotify-tools
Download
In this step, you’ll download the OSSEC tarball and a file containing its cryptographic checksums.
Since this a security article, we’re going to do a little extra work to verify that we’re installing valid software. The idea is that you generate the MD5 and SHA1 checksums of the downloaded OSSEC tarball and compare them with those in the checksum file. If they match, then you can assume that the tarball has not been tampered with.
wget -U ossec http://www.downloadspot.com/wp-content/uploads/2015/11/ossec-hids-2.8.2.tar.gz
Install
OSSEC can be installed all servers and VPS systems.
Before installation can start, you have to untar the file. You do that by typing:
tar -zxf ossec-hids-2.8.2.tar.gz
Now you should have a directory named ossec-hids-2.8.2. To start installation, you have to change (cd) into that directory:
cd ossec-hids-2.8.2
The only file of interest to us in that listing is install.sh. That’s the OSSEC installation script. To start the installation, type:
./install.sh
You will have to answer some installation questions now.
The correct entries to use are shown in red.
So if your language is English, press ENTER
. Otherwise, type the two letters for your language and press ENTER.
(en/br/cn/de/el/es/fr/hu/it/jp/nl/pl/ru/sr/tr) [en]:
After selecting the language, you should see this:
OSSEC HIDS v2.8 Installation Script - http://www.ossec.net
You are about to start the installation process of the OSSEC HIDS.
You must have a C compiler pre-installed in your system.
If you have any questions or comments, please send an e-mail
to dcid@ossec.net (or daniel.cid@gmail.com).
- System: Linux kuruji 3.13.0-36-generic
- User: root
- Host: kuruji
-- Press ENTER to continue or Ctrl-C to abort. --
Press ENTER and you will get:
1- What kind of installation do you want (server, agent, local, hybrid or help)? local
Type local
and press ENTER to get:
- Local installation chosen.
2- Setting up the installation environment.
- Choose where to install the OSSEC HIDS [/var/ossec]:
Accept the default and press ENTER to get:
- Installation will be made at /var/ossec .
3- Configuring the OSSEC HIDS.
3.1- Do you want e-mail notification? (y/n) [y]:
Press ENTER.
- What's your e-mail address? user@example.com
Type the email address where you want to receive notifications from OSSEC.
- We found your SMTP server as: mail.example.com.
- Do you want to use it? (y/n) [y]:
--- Using SMTP server: mail.example.com.
Press ENTER unless you have a specific SMTP server setting you want to use.
Now’s time to let OSSEC know what checks it should be running. In response to any prompt from the script, accept the default by pressing ENTER
.
ENTER for the integrity check daemon.
3.2- Do you want to run the integrity check daemon? (y/n) [y]:
- Running syscheck (integrity check daemon).
ENTER for rootkit detection.
3.3- Do you want to run the rootkit detection engine? (y/n) [y]:
- Running rootcheck (rootkit detection).
ENTER for active response.
3.4- Active response allows you to execute a specific command based on the events received.
Do you want to enable active response? (y/n) [y]:
Active response enabled.
Accept the defaults for firewall-drop response. Your output may show some IPv6 options – that’s fine.
Do you want to enable the firewall-drop response? (y/n) [y]:
- firewall-drop enabled (local) for levels >= 6
- Default white list for the active response:
- 8.8.8.8
- 8.8.4.4
- Do you want to add more IPs to the white list? (y/n)? [n]:
You can add your IP address here, but it’s not necessary.
OSSEC will now present a default list of files that it will monitor. Additional files can be added after installation, so press ENTER.
3.6- Setting the configuration to analyze the following logs:
-- /var/log/auth.log
-- /var/log/syslog
-- /var/log/dpkg.log
- If you want to monitor any other file, just change
the ossec.conf and add a new localfile entry.
Any questions about the configuration can be answered
by visiting us online at http://www.ossec.net .
--- Press ENTER to continue ---
By this time, the installer has all the information it needs to install OSSEC. Kick back and let the installer do its thing. Installation takes about 5 minutes. If installation is successful, you are now ready to start and configure OSSEC.
Note: One reason installation might fail is if a compiler is not installed. In that case, you’ll get an error like this:
5- Installing the system - Running the Makefile ./install.sh: 85: ./install.sh: make: not found Error 0x5. Building error. Unable to finish the installation.
If you get that error, then you need to install
build-essential
, as explained in the Prerequisites section of the tutorial.
If installation succeeds, you should see this type of output:
- System is Debian (Ubuntu or derivative).
- Init script modified to start OSSEC HIDS during boot.
- Configuration finished properly.
- To start OSSEC HIDS:
/var/ossec/bin/ossec-control start
- To stop OSSEC HIDS:
/var/ossec/bin/ossec-control stop
- The configuration can be viewed or modified at /var/ossec/etc/ossec.conf
--- Press ENTER to finish (maybe more information below). ---
OSSEC is now installed. The next step is to start it.
Start OSSEC
By default OSSEC is configured to start at boot, but the first time, you’ll have to start it manually.
If you want to check its current status, type:
/var/ossec/bin/ossec-control status
Expected output:
ossec-monitord not running...
ossec-logcollector not running...
ossec-syscheckd not running...
ossec-analysisd not running...
ossec-maild not running...
ossec-execd not running...
That tells you that none of OSSEC’s processes are running.
To start OSSEC, type:
/var/ossec/bin/ossec-control start
You should see it starting up:
Starting OSSEC HIDS v2.8 (by Trend Micro Inc.)...
Started ossec-maild...
Started ossec-execd...
Started ossec-analysisd...
Started ossec-logcollector...
Started ossec-syscheckd...
Started ossec-monitord...
Completed.
If you check the status again, you should get confirmation that OSSEC is now running.
/var/ossec/bin/ossec-control status
This output shows that OSSEC is running:
ossec-monitord is running...
ossec-logcollector is running...
ossec-syscheckd is running...
ossec-analysisd is running...
ossec-maild is running...
ossec-execd is running...
Right after starting OSSEC, you should get an email that reads like this:
OSSEC HIDS Notification.
2014 Nov 30 11:15:38
Received From: ossec2->ossec-monitord
Rule: 502 fired (level 3) -> "Ossec server started."
Portion of the log(s):
ossec: Ossec started.
That’s another confirmation that OSSEC is working and will send you email alerts whenever something it’s configured to monitor happens. Even when it is restarted, OSSEC will send you an email.
If you didn’t get this email right away, don’t worry. You may still need to tweak your email settings (which we’ll cover later in the tutorial) to make sure your OSSEC server’s emails can get through to your mail provider. This is especially true for some 3rd-party email service providers like Google and Fastmail.
Configure OSSEC for Real-time Alerts on File Modifications
Next, work with OSSEC’s files and directories, and learn how to change OSSEC’s monitoring and alert settings.
OSSEC’s directory structure
OSSEC’s default directory is a chroot-ed (sandbox) environment that only a user with root (admin) privileges can access. A standard user cannot cd
into /var/ossec
or even list the files in it. As the root (or admin) user, however, you can.
So, cd
into the installation directory by typing:
cd /var/ossec
To list the files in your new working directory, type:
ls -lgG
You should see these files and directories:
total 40
dr-xr-x--- 3 4096 Nov 26 14:56 active-response
dr-xr-x--- 2 4096 Nov 20 20:56 agentless
dr-xr-x--- 2 4096 Nov 20 20:56 bin
dr-xr-x--- 3 4096 Nov 29 00:49 etc
drwxr-x--- 5 4096 Nov 20 20:56 logs
dr-xr-x--- 11 4096 Nov 20 20:56 queue
dr-xr-x--- 4 4096 Nov 20 20:56 rules
drwxr-x--- 5 4096 Nov 20 21:00 stats
dr-xr-x--- 2 4096 Nov 20 20:56 tmp
dr-xr-x--- 3 4096 Nov 29 18:34 var
- OSSEC’s main configuration file is in the
/var/ossec/etc
directory. - Predefined rules are in the
/var/ossec/rules
directory - Commands used to manage OSSEC are in
/var/ossec/bin
- Take note of the
/var/ossec/logs
directory. If OSSEC ever throws an error, the/var/ossec/logs/ossec.log
file in that directory is the first place to look
Main configuration file, /var/ossec/etc/ossec.conf
To access the main configuration file, you have to change into /var/ossec/etc
. To do that, type:
cd /var/ossec/etc
If you do an ls
while in that directory, you’ll see these files and directories:
ls -lgG
Results:
total 120
-r--r----- 1 97786 Sep 8 22:03 decoder.xml
-r--r----- 1 2842 Sep 8 22:03 internal_options.conf
-r--r----- 1 3519 Oct 30 13:46 localtime
-r--r----- 1 7752 Nov 29 09:45 ossec.conf
-rw-r----- 1 87 Nov 20 20:56 ossec-init.conf
drwxrwx--- 2 4096 Nov 20 21:00 shared
The main configuration file is /var/ossec/etc/ossec.conf
.
Before modifying the file, make a backup copy, just in case. To make that copy, use the cp
command like so:
cp /var/ossec/etc/ossec.conf /var/ossec/etc/ossec.conf.00
The idea is if your changes don’t work or mess up the system, you can revert to the copy and be back to normal. It’s the simplest disaster recovery practice that you should always take advantage of.
Now, open ossec.conf
by using the nano
editor.
nano /var/ossec/etc/ossec.conf
The configuration file is a very long XML file with several sections.
Email settings
The first configuration options you’ll see are the email credentials you specified during installation. If you need to specify a different email address and/or SMTP server, this is the place to do it.
<global>
<email_notification>yes</email_notification>
<email_to>user@example.com</email_to>
<smtp_server>mail.example.com.</smtp_server>
<email_from>ossecm@ossec_server</email_from>
</global>
By default, OSSEC sends 12 emails per hour, so you’ll not be flooded with email alerts. You can increase or decrease that value by adding the <email_maxperhour>N</email_maxperhour>
setting to that section so that it reads:
<global>
<email_notification>yes</email_notification>
<email_to>user@example.com</email_to>
<smtp_server>mail.example.com.</smtp_server>
<email_from>ossecm@ossec_server</email_from>
<email_maxperhour>N</email_maxperhour>
</global>
Please replace N
with the number of emails you want to receive per hour, between 1 and 9999.
Some third-party email service providers (Google and Fastmail, for example) will silently drop alerts sent by OSSEC if the <email_from>
address does not contain a valid domain part, like the one in the code block above. To avoid that, make sure that that email address contains a valid domain part. For example:
<global>
<email_notification>yes</email_notification>
<email_to>user@example.com</email_to>
<smtp_server>mail.example.com.</smtp_server>
<email_from>user@ossec_server.com</email_from>
</global>
The <email_to>
and <email_from>
addresses can be the same. For example:
<global>
<email_notification>yes</email_notification>
<email_to>user@example.com</email_to>
<smtp_server>mail.example.com.</smtp_server>
<email_from>user@example.com</email_from>
</global>
If you don’t want to use an external email provider’s SMTP server, you can specify your own SMTP server. If your SMTP server is running on the same server as OSSEC, change the <smtp_server>
setting to localhost
. For example:
<global>
<email_notification>yes</email_notification>
<email_to>user@example.com</email_to>
<smtp_server>localhost</smtp_server>
<email_fromuser@example.com</email_from>
</global>
OSSEC does not send real-time alerts by default, but this tutorial calls for real-time notifications, so that’s one aspect that you’re going to modify.
If you still aren’t receiving expected emails from OSSEC, check the logs at /var/ossec/logs/ossec.log
for mail errors.
Example mail errors:
2014/12/18 17:48:35 os_sendmail(1767): WARN: End of DATA not accepted by server
2014/12/18 17:48:35 ossec-maild(1223): ERROR: Error Sending email to 74.125.131.26 (smtp server)
You can use these error messages to help you debug any issues with receiving email notifications.
Frequency of scans
In the <syscheck>
section of ossec.conf
, which starts like this:
<syscheck>
<!-- Frequency that syscheck is executed - default to every 22 hours -->
<frequency>79200</frequency>
We will turn on alerts for new file creation. Add the line <alert_new_files>yes</alert_new_files>
so that it reads like this:
<syscheck>
<!-- Frequency that syscheck is executed - default to every 22 hours -->
<frequency>79200</frequency>
<alert_new_files>yes</alert_new_files>
For testing purposes, you may also want to set the frequency of the system check to be much lower. By default, the system check is run every 22 hours. For testing purposes, you may want to set this to once a minute, that is, 60
seconds. Revert this to a sane value when you are done testing.
<syscheck>
<!-- Frequency that syscheck is executed - default to every 22 hours -->
<frequency>60</frequency>
<alert_new_files>yes</alert_new_files>
Directory and file change settings
Right after that, you should see the list of system directories that OSSEC monitors. It reads like:
<!-- Directories to check (perform all possible verifications) -->
<directories check_all="yes">/etc,/usr/bin,/usr/sbin</directories>
<directories check_all="yes">/bin,/sbin</directories>
Let’s enable real-time monitoring by adding the settings report_changes="yes" realtime="yes"
to each line. Modify these lines so they read:
<!-- Directories to check (perform all possible verifications) -->
<directories report_changes="yes" realtime="yes" check_all="yes">/etc,/usr/bin,/usr/sbin</directories>
<directories report_changes="yes" realtime="yes" check_all="yes">/bin,/sbin</directories>
report_changes="yes"
does exactly what is says. Ditto for realtime="yes"
.
In addition to the default list of directories that OSSEC has been configured to monitor, you can add new directories that you wish to monitor. In this next section, I’m going to tell OSSEC to monitor /home/user
and /var/www
. For that, I’m going to add a new line right under the existing ones, so that that section now reads:
<!-- Directories to check (perform all possible verifications) -->
<directories report_changes="yes" realtime="yes" check_all="yes">/etc,/usr/bin,/usr/sbin</directories>
<directories report_changes="yes" realtime="yes" check_all="yes">/bin,/sbin</directories>
<directories report_changes="yes" realtime="yes" restrict=".php|.js|.py|.sh|.html" check_all="yes">/home/user,/var/www</directories>
You should modify the directories to match your desired settings. If your user is not named user, you will want to change the path to the home directory.
For the new directories to monitor, we’ve added the restrict
option, which tells OSSEC to monitor only the specified file formats. You don’t have to use that option, but it comes in handy when you have other files, like image files, that you don’t want OSSEC to alert on.
That’s all the changes for ossec.conf
. Save and close the file.
Restart OSSEC
All that’s left now is to restart OSSEC, something that has to be done any time you modify OSSEC’s files. To restart OSSEC type:
/var/ossec/bin/ossec-control restart
If all is working correctly, you should receive an email from OSSEC telling you it has started.
Triggers
And depending on what happens in the directories that OSSEC has been configured to monitor, you should be getting emails that read something like this:
Now try creating a sample file in /home/user
touch /home/user/index.html
Wait a minute. Add some content:
nano /home/user/index.html
Wait a minute. Delete the file:
rm /home/user/index.html
You should start receiving notifications like this:
OSSEC HIDS Notification.
2014 Nov 30 18:03:51
Received From: ossec2->syscheck
Rule: 550 fired (level 7) -> "Integrity checksum changed."
Portion of the log(s):
Integrity checksum changed for: '/home/sammy/index.html'
Size changed from '21' to '46'
What changed:
1c1,4
< This is an html file
---
<!doctype html> <p>This is an html file</p>
Old md5sum was: '4473d6ada73de51b5b36748627fa119b'
New md5sum is : 'ef36c42cd7014de95680d656dec62de9'
Old sha1sum was: '96bd9d685a7d23b20abd7d8231bb215521bcdb6c'
New sha1sum is : '5ab0f31c32077a23c71c18018a374375edcd0b90'
Or this:
OSSEC HIDS Notification.
2014 Dec 01 10:13:31
Received From: ossec2->syscheck
Rule: 554 fired (level 7) -> "File added to the system."
Portion of the log(s):
New file '/var/www/header.html' added to the file system.
Note: OSSEC does not send out real-time alerts on file additions, only on file modifications and deletions. Alerts on file additions go out after a full system check, which is governed by the frequency check time in
ossec.conf
.nano /var/ossec/etc/ossec.conf
Setting for
frequency
:<syscheck> <!-- Frequency that syscheck is executed - default to every 22 hours --> <frequency>79200</frequency>
Again, if you are not getting emails check your /var/ossec/logs/ossec.logfile
for more details.