Skip to content

Instantly share code, notes, and snippets.

@photomattmills
Created March 15, 2011 21:36
Show Gist options
  • Save photomattmills/871541 to your computer and use it in GitHub Desktop.
Save photomattmills/871541 to your computer and use it in GitHub Desktop.
chkrootkit shell script
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