Topics

Archives

Handy References

Windows

Rootkit Hunters

Wednesday, February 10th, 2010

A few resources for finding rootkits: Linux: Rootkit Hunter Chkrootkit Windows: RootkitRevealer

My Favorite Commands…

Friday, October 5th, 2007

Some 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 [...]