Archive for January, 2008
How to find reciently changed files
Looking to see what has changed on your linux server lately? This command will find files changed in the last 10 days
find ./ -type f -mtime -10 -exec ls -al {} \;
Posted: January 20th, 2008 under Linux.
Comments: none
Using rpm to cleanup after hackers…
Ever get the feeling that a file on the system is not the one you think it is? Wonder if a hacker has replaced a legit file with a evil version? It is possible to verify packages against their origional installation using the rpm tool.
You can simply follow the rpm -V command with […]
Posted: January 18th, 2008 under Linux.
Comments: none