Crack Cap File Without Dictionary Definitions



' (Windows 10) or 'Windows cannot open this file' (Windows 7) or a similar Mac/iPhone/Android alert. If you cannot open your CAP file correctly, try to right-click or long-press the file. Then click 'Open with' and choose an application. Programs that open and convert CAP files: Generic Network Capture Document. Scrutiny definition: 1. The careful and detailed examination of something in order to get information about it: 2.

Another word for crackdown. Find more ways to say crackdown, along with related words, antonyms and example phrases at Thesaurus.com, the world's most trusted free thesaurus.

[YB]This article is an excerpt from my in which I talk about hacking WiFi enabled devices with rogue access points, war driving, custom captive portals and splash page, multiple access points from a single NIC and much more.Click here to download the sample copy[/YB]

In this chapter we will cover:

  • Intro to WPA2
  • What is Dictionary attack ?
  • Capturing WPA2 handshake
  • Aireplay-ng
  • Cracking
  • Conclusion

In the previous chapter we learned

Which left us with an obvious question, How to secure it ? use WPA2-PSK.

Meet the parents 1080p yify. WPA2-PSK, WiFi Protected Access – Pre Shared Key, is by far one of the most secure and unbroken wireless security encryption at this moment. There is no encryption flaw yet reported by security researchers for WPA2, so that a malicious hacker can easily take advantage of and easily decrypt packets.

Encryption might be the most secured and unbroken at this point, but WPA2 system is still pretty vulnerable to the hackers.

Unlike WEP, WPA2 uses a 4-way handshake as an authentication process. In which the key is never transmitted over the network but used to encrypt/decrypt the data packets across the network. That allows a hacker to just capture the handshake and perform the attack without Live capturing data packets as we did while cracking WEP.

[YB]Checkout my new store for Best WiFi adapters for Hacking, Best-selling Pentesting Books and Best WiFi Boosters: Rootsh3ll rStore[/YB]

Just like the broadcast packets we saw in the previous chapter using wireshark, the 4-way handshake is also in plain text. Which allows a potential hacker to capture the plaintext information like

  • Access point MAC address
  • Client MAC address
  • ESSID – AP Name

Information above is used by the hacker to perform a dictionary attack on the captured 4-way handshake (PCAP File). Let’s see

  • What is a dictionary attack ?
  • How to perform dictionary attack on WPA2-PSK

What is a dictionary attack ?

Hashing is one of the keys used in the security field professional to protect the users from the malicious attackers.

Hash is simply a cryptographic function that converts a data or file of an arbitrary length or size to a fixed length, which is considered practically impossible to invert or reversed, as no key is involved in the process.

A Hash is always unique

In a dictionary attack,

  1. We create/use a wordlist (text file of possible passwords)
  2. Take a word at a moment from the wordlist
  3. Create its hash using the Hash function, PBKDF2 for WPA2
  4. Compare the output value with the existing hash.
  5. If value matches, password taken from the wordlist is the correct password

Above steps are involved in the WPA2 passphrase cracking process.

Let’s begin,

Step 1: Start monitor mode

  • sudo airmon-ng start wlan1 #Start monitor mode

Final output should look like this:

Step 2: Start capture, airodump-ng

We will now start airodump-ng to sniff the air and wait until the desired AP and corresponding client are displayed.

  • airodump-ng wlan1mon

As you can see in the above image, “rootsh3ll” is the victim AP . We will now note the information highlighted

  • AP (ESSID): rootsh3ll
  • AP MAC (BSSID): 64:66:B3:6E:B0:8A
  • Client MAC: 30:A8:DB:C6:88:13
  • Channel: 11

Hit CTRL-C, and kill airodump-ng.

Now, we will start airodump-ng exclusively to capture packets associated with “rootsh3ll” and save the 4-way handshake in a PCAP file, say rootsh3ll

Step 3: Start airodump-ng exclusively

  • airodump-ng –bssid 64:66:B3:6E:B0:8A -c 11 wlan1mon -w rootsh3ll

Here “rootsh3ll” is the output filename provided to the -w parameter

Step 4: Disconnect the client with aireplay-ng.

Now, are two ways for capturing the handshake,

  • Wait for a client to connect.
  • Disconnect the already connected client.

First option seems to be slow, time taking. Whether in our case, option 2 is just perfect as we have a client connected to the wireless AP “rootsh3ll”.

How does that work ? we use a utility from the aircrack-ng suite named aireplay-ng which allows us to craft and send a disconnect request to the desired AP with the information we noted down earlier.

We are actually abusing a legitimate Windows(or any other OS) feature. Which forces the wireless card to re connect to the AP when available.

In the second option we are actually making sure that option 1 happens, so that we can capture the handshake.

  1. Client disconnects when receives the disconnect packet.
  2. Reconnect to the AP
  3. 4-way handshake between AP and client
  4. Hacker captures the 4-way handshake

let’s disconnect the client now,

Open a new Terminal window and type:

  • aireplay-ng –deauth 5 -a 64:66:B3:6E:B0:8A wlan1mon

parameters applied:

–deauth 5: 5 deauth requests broadcasted with BSSID “rootsh3ll”, 0 for endless

-a: parameter to tell aireplay-ng the BSSID

wlan1mon: monitor mode interface

Step 5: Capture the handshake

Meanwhile in the terminal window of airodump-ng, you would notice the top of the output. which says

  • WPA Handshake: 64:66:B3:6E:B0:8A

Which simply means that the WPA handshake has been capture for the specific BSSID, which is the AP MAC of rootsh3ll.

Generic pnp monitor driver error windows 10. Hit CTRL-C, as the handshake has been captured, we will now crack the password using the captured handshake

Step 6: How does a Handshake looks like? Open Wireshark (Optional)

This step is optional, you can open the PCAP file(rootsh3ll-01.cap) in Wireshark for manual inspection, or to see how does a handshake looks like.

Type in terminal wireshark [.cap file], which in our case is

  • wireshark rootsh3ll-01.cap
  • Type “eapol” in the filter field, press [ENTER]

You would notice the last column, “Info” is showing a message no. from 1 to 4.

This is the 4 way handshake happened during the capture. It is like AP and Client are talking to each other. Notice the Source and Destination tab.

moving on to the next step,

Step 7: Cracking

Here’s an ugly truth

WPA2 password cracking is not deterministic like WEP, because it is based on a dictionary of possible words and we do not know whether the passphrase is in the dictionary or not. So you are never sure whether a specific dictionary will just work or not.

For this tutorial I have beautifully crafted a wordlist, just to demonstrate how the output of the cracked password would look like. Command and the wordlist looks like this:

Here I have directly saved the password in the wordlist to demonstrate how the output would look like, your will be different, obviously.

let’s fire up aircrack-ng and crack the key

Type in terminal, aircrack-ng [.cap file] -w [wordlist], which in our case looks like

Crack Cap File Without Dictionary Definitions
  • aircrack-ng rootsh3ll-01.cap -w dict

and aircrack-ng has cracked the password in one go.

This is quite odd to see the cracked passphrase for the first time, right ?

Here’s a sample output of the running process, yours would look like the same during the cracking process.

Countermeasures

Use a strong password to stay safe,

Crack Cap File Without Dictionary Definitions Online

Example: Myp@sword8@#, is a strong password

As it has

  • No order in plain English language
  • 13 Character password, very secured
  • Alpha-numeric and special characters in one makes a very strong password.
  • Upper and Lower-case characters.
  • No pattern
  • Not a mobile number, as mobile numbers can be easily guessed.

Or you can just keep a password with some special characters, a word that isn’t a pattern or a dictionary word.

That will also be good and secured.

Conclusion

We learned the process involved in WPA cracking.

Here is a list of commands we went through the capture and the cracking process

Crack Cap File Without Dictionary Definitions For Children

That’s all for WPA2 for now, Hope you enjoyed through the chapter.

Crack Cap File Without Dictionary Definitions For Windows

In next chapter we will learn how to crack WPS, and why WPS ?

Crack Cap File Without Dictionary Definitions Free

Faced issues in between ? feel free to ask in the comment section. I would love to answer them all.