Search for rootkit malware with chkrootkit
Rootkit Sleuth

Linux can be infected by rootkit malware that is hidden and hard to detect. The chkrootkit program can help find rootkit infections.
The chkrootkit package examines key system files to determine whether they have been tampered with or infected by malware known as rootkits. An infected system can leak valuable data such as user credentials, can allow hackers to steal banking information, can provide remote control capability, and can disrupt security software. The fact that rootkits can remain on a system for long periods of time undetected makes them particularly dangerous.
Changing Attitudes on Linux Malware
Contrary to popular belief, Linux does suffer from malware infections and attacks. Rootkits are one type of malware designed to infect, gain elevated access, and remain hidden from detection for long periods of time. Rootkits are especially malicious, because they not only remain hidden but also can disable or disrupt security software making them hard to remove. Once infected, often the only recourse is to re-image (wipe and reinstall) the system.Symantec has identified five types of rootkits:
- Hardware/firmware – installed in the computer’s BIOS, firmware, or other hardware components
- Bootloader – the system’s bootloader is active before the operating system loads
- Memory – RAM-based rootkits only last while the computer is powered on and generally do not persist after a reboot unless the file is set to reload on boot
- Application – application rootkits alter standard programs that appear to work normally while infected
- Kernel mode – core operating system alterations access and control the computer’s lowest operational levels
Rootkits are generally downloaded and installed by the root user, which means that the malware author now has full control of the infected computer. Malicious file attachments, social engineering, and malicious web payloads account for most of the known rootkit infections.Great care must be taken by manufacturers, suppliers, and system administrators to guard against infections of this kind. Regular updates and best practice security measures can decrease the likelihood of malware infections. But those who download, execute, and install software as the root user must ensure that this material is first tested in a non-production environment.
Installing chkrootkit
On Debian-based systems, use:
$ sudo apt install chkrootkit
On Red Hat Enterprise Linux, the procedure is more complex, because there is no chkrootkit RPM in the standard repositories. You’ll have to install from source and there are some prerequisites:
$ sudo yum –y update
I installed the minimal CentOS 7.x option, so I don’t have any development tools on my system:
$ sudo yum –y install wget gcc-c++ glibc-static
Download the latest tarball for chkrootkit:
$ sudo wget -c ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz
Unzip the tarball:
$ tar xvf chkrootkit.tar.gz $ mkdir /usr/local/chkrootkit$ sudo cp chkrootkit-0.53/* /usr/local/chkrootkit
At editorial deadline, the current version is chkrootkit v0.53, but your version and directory name might vary:
$ cd /usr/local/chkrootkit
Compile the code:
$ sudo make sense
Checking Out chkrootkit
Now you have a small collection of chkrootkit related tools.
- chkrootkit – the main script that checks system binaries for rootkit infection and modification
- ifpromisc – checks network interfaces for promiscuous mode
- chklastlog – checks lastlog for deletions
- chkwtmp – checks wtmp for deletions
- chkproc and chkdirs – check for evidence of loadable kernel module (LKM) Trojans
- strings – script for strings replacements
- chkutmp – checks for utmp deletions
Although you can run any of the scripts, the chkrootkit script runs all checks for you.To list all available options, use the code in Listing 1.
Listing 1
Listing All Available Options
$ sudo /usr/local/chkrootkit/chkrootkit –h Usage: /usr/local/chkrootkit/chkrootkit [options] [test ...] Options: -h show this help and exit -V show version information and exit -l show available tests and exit -d debug -q quiet mode -x expert mode -r dir use dir as the root directory -p dir1:dir2:dirN path for the external commands used by chkrootkit -n skip NFS mounted dirs
Searching for Rootkit InfectionsUnless you have a specific need, you can simply run chkrootkit with no options:
$ sudo /usr/local/chkrootkit/chkrootkit
Because the output is very long, you can check to see if there are any obvious infections, by filtering for the term INFECTED:
$ sudo /usr/local/chkrootkit/chkrootkit | grep INFECTED
If there is a positive (false or not), you’ll see a message similar to the following:
Searching for Linux.Xor.DDoS ... INFECTED: Possible Malicious Linux.Xor.DDoS installed
This infection notice is a false positive on my new CentOS 7 system. You should investigate each positive notification to be sure that they are either false or real. Further investigation will determine the extent of the damage and possibly how long your system has been infected and compromised. You should update and run chkrootkit on a regular basis to halt any infections before they do extensive damage to your systems or to your users.
Buy Linux Magazine
Direct Download
Read full article as PDF:
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
An All-Snap Version of Ubuntu is In The Works
Along with the standard deb version of the open-source operating system, Canonical will release an-all snap version.
-
Mageia 9 Beta 2 Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.