Windows
Rootkit Hunters
Wednesday, February 10th, 2010A few resources for finding rootkits: Linux: Rootkit Hunter Chkrootkit Windows: RootkitRevealer
My Favorite Commands…
Friday, October 5th, 2007Some of the command constructs I love but don’t always remember off the top of my head: Recursively search for a text string, and provide the file path and name. sudo find ./ -exec grep “http://litmus.mozilla.org” {} \ ls -l {} \; 2> /dev/null Recursively add files to svn: svn status | grep “\?” | awk ‘{print [...]