Sunday, October 28, 2012

Wifite - Crack WiFi

Wifite is a automated wirless auditor written in python.
You can download wifite from here
This script work only on linux system not in windows or OSx.
You need python 2.6 or 2.7 for run this script.
You need wireless drivers patched for monitor mode and injection. Most security distributions (Backtrack, BlackBuntu, etc) come with wireless drivers pre-patched.
You need aircrack-ng suite.
For run move into directory (cd..) and digits:
python wifite.py
For more information digits :
python wifite.py -help
p.s : for run this script you need root access !

If you have any problem or you need some explanations just write under this post !

Wednesday, October 10, 2012

Whatweb

What web is a tool for web application analysis written by Andrew Horton in 2009.

Install:


Firstable we install Ruby (linux):
sudo apt-get install ruby ruby-dev libopenssl-ruby rubygems1.8
After we install some dipendences of ruby :
sudo gem install anemone em-resolv-replace json bson bson_ext mongo rchardet
Now download whatweb from here

Run


For run whatweb move in to directory (cd ..) and digits ./whatweb
Now you can see the help of whatweb. Whatweb have more than 900 plugins.
Whatweb have 4 levels of "aggression":

passive : Make a single request on the target except redirect.
empty
aggressive: performs a thorough scan of target.
heavy: greater depth of the third level
For make a scan digits :
./whatweb –aggression=3 www.site.com
For more details see the help of whatweb!

If you have any problem or you need some explanations just write under this post !

Tuesday, October 2, 2012

How to crack hashed password using google

Hashing is not the same of Crypting. Crypting is bidirectional and hashing is unidiretional.
Crypting : Crypt <----> Decrypt
Hashing : Decrypt ----> Crypt
We can decrypt hashed passowrd using google with a python script called Gcrack.
You can download Gcrack from here
Gcrack allows to decrypt more than one passowrd at the same time.
For run Gcrack we need python compiler, i reccomend you python 2.7
Now move into directory (cd ..)
Digits: python gcrack.py pass.txt
pass.txt is the route where are the lists of passwords to decrypt.

If you have any problem or you need some explanations just write under this post !