Secure Linux
In this article guide, I tried to show basic security and settings I do with every Linux installation.
Check for Drovorub Malware
Bash
$ touch testfile
$ echo “ASDFZXCV:hf:testfile” > /dev/zero
If the testfile disappears… you are infected
Check for unsigned kernel modules
Bash
|
If you see vbox or nvidia modules, these are for VirtualBox and NVidia Drivers respectively
Secure Boot
Secure Boot forces checks for kernel module signatures and is good not
only for blocking Drovorub-style malware, but also prevents Evil Maid
attacks as well. However, it can be complex and also make using bootable
USB drives difficult. Note: UEFI Boot Required… No Legacy/CSM.
Way to Install
|
Note: I used the enable validation on Debian based systems and it worked right out of the box.
Reference: https://christitus.com/secure-linux/
Comments
Post a Comment