Install Rkhunter

Author Topic: Install Rkhunter  (Read 3859 times)

mahbub-web

  • Guest
Install Rkhunter
« on: April 20, 2013, 11:33:30 PM »
Install Rkhunter

Overview

rkhunter (Rootkit Hunter) is a Unix-based tool that scans for rootkits, backdoors and possible local exploits. It does this by comparing SHA-1 hashes of important files with known good ones in online database, searching for default directories (of rootkits), wrong permissions, hidden files, suspicious strings in kernel modules, and special tests for Linux and FreeBSD.

Instructions

1. Log into your Dedicated/VPS Server via SSH.
2. Type the follow commands:

Code: [Select]
wget http://sourceforge.net/projects/rkhunter/files/rkhunter/1.3.8/rkhunter-1.3.8.tar.gz/download
3. Now unzip the archive:

Code: [Select]
tar -zxvf rkhunter-1.3.8.tar.gz
4. Then, change directory:

Code: [Select]
cd rkhunter-1.3.8
5. Run the installer:

Code: [Select]
./installer.sh
6. You can test the installation by typing this command. Note: If successful, this scan will take about 2 minutes to complete.

Code: [Select]
/usr/local/bin/rkhunter -c
Optional settings

After this, you may want to create a cron job to run on a daily basis. Use this shell script below:

Code: [Select]
#!/bin/bash
(/usr/local/bin/rkhunter -c --sk --nocolors --check | mail -s "Daily Rkhunter Scan Report" youremail [at] email [dot] com)

Simply replace the email address with your email. You can then create a cron job in the root tasks in Plesk or via ssh.
If you would like to get only warnings inside your email simply replace

Code: [Select]
--sk --nocolors --check
Code: [Select]
--cronjob --report-warnings-only
You can also check for software updates by adding

Code: [Select]
--update
You may want to run the update on a different cronjob maybe a weekly basis.

ref: http://www.servernoobs.com/install-rkhunter/