Kali Linux Password Wordlist

Cracking password hashes with a wordlist In this recipe, we will crack hashes using John the Ripper and the password lists. We will also work with a local shadow file from a Linux machine and we will try to recover passwords based off wordlists.

  1. Kali Linux Wordlist Location
  2. Kali Linux Password Dictionary Location
  3. Download Wordlists For Kali Linux

a

Before starting the attack lets have a small introduction about WPA/WPA2 .

What is WPA/WPA2

  • If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed.
  • Default Username and Password. Access root Shell on Kali. The objective of this guide is to show the default username and password for Kali Linux. The guide will be applicable for persistent installations, as well as the live CD image and Kali virtual machine downloads in VirtualBox or VMware.

Wi-Fi Protected Access (WPA) and Wi-Fi Protected Access II (WPA2) are two security protocols and security certification programs developed by the Wi-Fi Alliance to secure wireless computer networks. The Alliance defined these in response to serious weaknesses researchers had found in the previous system, WEP (Wired Equivalent Privacy).
WPA became available in 2003. The Wi-Fi Alliance intended it as an intermediate measure in anticipation of the availability of the more secure and complex WPA2. WPA2 became available in 2004 and is a common shorthand for the full IEEE 802.11i (or IEEE 802.11i-2004) standard.
A flaw in a feature added to Wi-Fi, called Wi-Fi Protected Setup, allows WPA and WPA2 security to be bypassed and effectively broken in many situations. WPA and WPA2 security implemented without using the Wi-Fi Protected Setup feature are unaffected by the security vulnerability.

WPA2 has replaced WPA. WPA2, which requires testing and certification by the Wi-Fi Alliance, implements the mandatory elements of IEEE 802.11i. In particular, it includes mandatory support for CCMP, an AES-based encryption mode with strong security. Certification began in September, 2004; from March 13, 2006, WPA2 certification is mandatory for all new devices to bear the Wi-Fi trademark.

Requirements to start attack

  1. Kali Linux (Installed in virtual machine (or) as host).
  2. External WIFI card.
  3. A word-list containing passwords. (In kali you are having wordlist rockyou.txt which is located in /usr/share/wordlists)

Step 1

First we have to check our wifi card is connected with our device or not. To see that we have a command

ifconfig

Now you can see we are having wireless interface as wlan0 connected to our machine.

Step 2

Kali linux password dictionary location

To capture the packets of the wireless network we need to turn on our wifi card to monitering mode. To do that we have command

  • airmon-ng start [interface name]

airmon-ng start wlan0

Kill all the process/PID which can create problems while cracking.

  • kill [PID no.]

Step 3

Now we are in monitoring mode having interface wlan0mon. After entering into monitoring mode please check the interface name again to go further.

we can sniff the packets of the entire network and we can see how many accesspoints are around you. To do that

  • airodump-ng [present interface name]
Linux

airodump-ng wlan0mon

Step 4

Now you are having list of Wifi accesspoints around you , select the desired once you want to crack. To do that

  • airodump-ng -c [channel] –bssid [Target Mac] -w [file_name you want to save] [interface]
Kali Linux Password Wordlist

airodump-ng -c 1 –bssid FC:4A:E9:4B:01:8A -w 000 wlan0mon

Do not close this window because you will get handshake here.

Step 5

To crack the wifi password we need to have handshake i.e to connect any wifi router we need to exchange our key with the router to verify the Guinean user and if our key is correct we will get connected. Every time the user try to connect the exchange of keys take place and the process is called handshake.

Now we are going to take the advantage of this process . Only handshake happens when a user tries to connect to the route, as we can’t wait for the new user to connect .

we can disconnect the user already connected and those users who are disconnected tries to connect back to the route. In the mean time we can sniff handshake. To do this

  • aireplay-ng -0 [no.of packets] -a [accesspoint mac] [interface]

airreply-ng -0 1000 -a FC:4A:E9:4B:01:8A wlan0mon

Kali linux password dictionary location

It will send Deauth packets to the users and disconnect them don’t stop this process until you get the handshake.

See we got the handshake. This handshake that we captured is saved in a file 000 that we have given in Step 4.

Step 6

The last and final step to get password . We are having a tool named Aircrack which will brute force the list of word-list password and tries to crack the wifi pin.

Kali Linux Wordlist Location

To crack the password using Aircrack

  • aircrack-ng [file containing handshake packets] -w [word-list containing passwords]

aircrack-ng 000.cap -w rockyou.txt

Kali Linux Password Dictionary Location

Sucessfully Cracked the wifi password. Undertale colored sprite mod.

Note: This method only works when you are having correct password in your word-list. If you are not having correct password in your word-list file then this attack is of no use.

This article is only for Educational purpose , I am not responsible for any illegal activities. Do not break into devices that you don’t have permission.

Download Wordlists For Kali Linux

If you think this article is helpful please let me know on the comments below. And Share as much as possible. Thank you 🙂