Harden your systems with Lynis
Starting Your Security Scan
After confirming by pressing the Enter key, Lynis starts its tests and writes the results to your standard output. Results marked in green are the successfully completed tests; red warnings point to problems or vulnerabilities (Figure 2). Administrators simply need to make a note of gray result messages. They show that, for instance, the service is not installed on the system. Messages highlighted in yellow do not point to critical problems, but Lynis does see some scope for improvement. The tool might even suggest some remedies, which appear right at the end of the test report (Figure 3).
After each test, Lynis stops, thus giving the user the opportunity to inspect the output. The test continues after you press the Enter key. If you want Lynis to simply perform all the tests in succession, just add the --quick
or -Q
parameter to the command line. Depending on your terminal, the output from Lynis may use problematic color schemes, or it might be difficult to read. You can stipulate the additional --reverse-colors
parameter to tell Lynis to adapt the colors for a light background. If this doesn't help, you can also completely disable colors by stipulating the --no-colors
parameter.
Lynis consists of a collection of shell scripts, each of which checks precisely one system component. For their work, the scripts harness the power of typical system commands. For example, one of the scripts tests the firewall rules by running iptables. You might find that programs cannot be executed – either because of a program error or because the required access privileges for executing the program are missing. Lynis then deems the test to have failed and issues a warning. You can see an example of this behavior in Figure 2, where access to D-Bus failed. Administrators thus always need to check whether Lynis really has found a problem or whether the test was canceled. It makes sense to check out the error message that appears below the test.
When finished, Lynis delivers some statistics, as shown in Figure 4. You will find a somewhat more exhaustive test report in the /var/log/lynis.log
file. Its counterpart, /var/log/lynis-report.dat
, contains a summary of the test run and the improvements suggested by Lynis. But caution is advisable: as soon as you launch Lynis the next time, it will overwrite the existing logfile and report file.
Automated Scans
To identify problems that have crept in the back door, administrators will want to run Lynis regularly. The --cronjob
option will help you execute the program on a regular schedule: If you run the tool with this parameter, it does not wait for user input and also removes all critical characters (special chars) from the input. In this way, you can run Lynis as a Cron job. Of course, the tool would overwrite the logfile and report file, /var/log/lynis.log
and /var/log/lynis-report.dat
, in each run. You can prevent Lynis from overwriting the logfiles by running Cron using a self-programmed wrapper script. Listing 1 contains a simple example. In the extras/systemd
subdirectory of the Lynis archive, you will also find two files for Systemd: You can use the service
file to enable Lynis automatically on system startup; The timer
file launches the tool once a day. In both cases, it makes sense to copy Lynis to a directory such as /usr/local/lynis
.
Listing 1
Integrating Lynis with Cron
#!/bin/sh DATE=$(date +%Y%m%d) # Launch Lynis: /usr/local/lynis/lynis -c --cronjob > /var/log/lynis-output.${DATE}.txt # Back up generated log files: mv /var/log/lynis.log /var/log/lynis.${DATE}.log mv /var/log/lynis-report.dat /var/log/lynis-report.${DATE}.dat
Using Individual Scans
If so desired, Lynis will also perform predefined tests. The approach is somewhat convoluted, however: Each test has a unique, cryptic ID. For example, Lynis refers to the test against the iptables kernel module as FIRE-4511
. To find out which ID belongs to which test, let Lynis perform all the tests once, and then take a look at the /var/log/lynis.log
file. It lists the IDs to match the tests.
Another source of information are the shell scripts in the include
subdirectory whose filenames start with test_
. The scripts contain the tests themselves; for example the tests_firewall
script groups all the tests relating to the firewall. The test IDs are included as comments in the script. Once you have determined the IDs for the desired tests, add them as a blank-separated list following the --tests
parameter. As an example, the following command would execute the FIRE-4511
and AUTH-9226
tests:
./lynis -Q --tests "FIRE-4511 AUTH-9226"
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Thousands of Linux Servers Infected with Stealth Malware Since 2021
Perfctl is capable of remaining undetected, which makes it dangerous and hard to mitigate.
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.