Created
March 15, 2011 21:36
-
-
Save photomattmills/871541 to your computer and use it in GitHub Desktop.
chkrootkit shell script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl http://www.reznor.com/tools/chkrootkit.tar.gz > chkrootkit.tar.gz | |
if test $(openssl md5 chkrootkit.tar.gz | cut -d" " -f2) == $(curl http://www.reznor.com/tools/chkrootkit.md5 | cut -d" " -f1); | |
then | |
tar -xvf chkrootkit.tar.gz | |
cd chkrootkit-* | |
sudo ./chkrootkit | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment