Hi all, I was able to figure out how to crack a WEP key fairly easily. Make a note that this is for informational use only, and to test the security of your own wireless access point. I did this using an Acer Ferrari 5000 which uses an Atheros A/B/G wireless chipset (model AR5006EXS). Most linux distros I've used didn't have wireless drivers for my device, but this distro easily found and enabled my device.
This can take a long time; in my case, overnight, with a lot of traffic from multiple machines, I was able to capture 912075 IV's. The more captured packets, the easier it will be to crack the key. If you're unsure what the command line switches are used for, type in # man airodump-ng at the command prompt. You can see from my statement I am dumping packets captured on channel 6, using band G, using ath1 ethernet contoller and dumping the results to a file named dump1 in the directory we created.
11. hit Ctrl+C to stop the capture.
12. Now we want to crack the key. At the root shell command prompt type in # aircrack-ng -b MAC_ADDRESS_OF_TARGET_WAP -n 128 /home/dump/dump1-01.ivs
It may take a little while but aircrack-ng will tell you if it doesn't have enough captured packets. I guessed that (-n 128) the WAP is using 128 bit encryption. If it was 64 bit I would have used (-n 64).
If you don't have enough packets, and you're not capturing them quick enough, you may want to use a second laptop booted to BackTrack and run "aireplay-ng" while your first laptop is capturing packets. This is used to create traffic using a deauth attack I believe. An example of a command that's worked for me is # aireplay-ng ath1 -2 -b MAC_ADDRESS_OF_TARGET -m 68 -n 68 -d ff:ff:ff:ff:ff:ff .
Good luck and have fun cracking!
You shouldn't even use WEP if possible....I suppose it's better than nothing D:
It at least means that it takes some effort to get access, thus making the unsecured network down the road more attractive than yours.
If someone really wants access to your specific network for some reason, then they're going to get in eventually... although a better encryption would discourage them further and make it take longer.
Sending ...