Install Rkhunter

0
784

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:

wget http://sourceforge.net/projects/rkhunter/files/rkhunter/1.3.8/rkhunter-1.3.8.tar.gz/download

3. Now unzip the archive:

tar -zxvf rkhunter-1.3.8.tar.gz

4. Then, change directory:

cd rkhunter-1.3.8

5. Run the installer:

./installer.sh

6. You can test the installation by typing this command. Note: If successful, this scan will take about 2 minutes to complete.

/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:

#!/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

--sk --nocolors --check
--cronjob --report-warnings-only

You can also check for software updates by adding

--update

You may want to run the update on a different cronjob maybe a weekly basis.

Originally posted 2016-01-11 05:53:09.

LEAVE A REPLY

Please enter your comment!
Please enter your name here