Archive for the “Security” Category

Just tested the Armitage for Metasploit today and this is how it looks like.. yet a greater UI for metasploit.. Gotta love it!

Comments No Comments »

I found out that most sys admin having a trouble to find those files that already affected with a malware script injection. For example “alienradar.ru” or any site. The solution is quite simple, you just need to run this command below or make a bash script;

Command-line:

find your_path_location -exec grep  name_to_find {} \; -print

Bash script:

#!/bin/sh

find $1 -exec grep $2 {} \; -print > /write_logs/to &

and run your script:

./filename.sh location name

Thats all! Happy hunting :D

Comments No Comments »