How to hack any Wi-Fi

Tomcat

Professional
Messages
2,695
Reaction score
1,060
Points
113
There were many ways to hack Wi-Fi on the channel, however, questions about how to do this continue to come to us in the bot and in the LAN.

I decided to paint the detail in this article, the process of intercepting and decrypting handshake.

This article will be a great helper for novice subscribers.
Let's start!

We perform all actions on a machine with Kali Linux.

1. Interception of handshake
1. First, we need to download airgeddon to our Kali machine. Go to the terminal and download the utility:

Code:
sudo git clone https://github.com/v1s1t0r1sh3r3/airgeddon.git

2. Go to the folder with installed airgeddon and launch it.

Code:
cd airgeddon /

3. The software will now start checking for updates and then check for the installed tools.

Most likely you will not have all of the tools installed. Opposite the dependency, you will see the error message and the specified possible name. Next, your steps are to install this tool. For example, bettercap is missing:

Code:
apt install bettercap

We installed bettercap with a simple command. And so we do with all the missing tools.

4. Next, select your wi-fi adapter, I have it Alfa. Number 2

5. After that we get to the main menu and put our adapter into monitoring mode, this is number 2.

6. Then go to the tools menu for working with the handshake number 5.

7. In this menu, we need to select a target search. This is the number 4.

Then the search for targets will begin. As soon as our wi-fi point appears, you can end the search by pressing Ctrl + C.

Then we select ours from the list of wi-fi points.

Important! if there is no more than one client at this point, then it will not work to intercept the handshake. The fact that the software does not show clients on a particular network does not mean that they are not there!

b4d23b92-217d-4058-9694-8f80ddba866d.png


8. As soon as the target is selected, we switch to the handshake capture mode, number 6.

And before us there are three types of attack. We choose number 2 - "aireplay deauthentication attack"

In fact, we will send a request to the point to reboot. After that, we will listen on the channel and intercept packets. You can also choose 1 method, but it is longer, you will have to wait until the user himself enters the password for the point. Choose 2 and leave the default settings.

148e5463-7f96-433c-9276-ba0d5b336ae1.png


After that, the interception takes place, and we are offered to register the save path. Select the folder and save our handshake there.

That's where we finished with Airgeddon, we can close it and go to Windows to decrypt our file with the .cap extension

2. Password decryption
1. Download hashcat binaries (click) unzip all files into a folder. The main thing is not far away, since we will open it through CMD.

2. Next, we need to convert our file with the .cap extension to .hc22000.

To do this, go here: website (Click), upload our file and download the converted one.

3. Open CMD, go to the folder with our cat and enter the command:

Code:
hashcat.exe -m 22000 -w 2 --force C: \ Users \ username \ Desktop \ your folder \ WiFi.hc22000 C: \ Users \ jeka_ \ Desktop \ Course \ pass.txt

-m 22000 - this is a mod that tells the program that we are working with WPA
-w 2 - with this command we choose a working profile, where 1 is weak and 4 is powerful.
--force - ignore errors
C:\Users\username\Desktop\your folder\WiFi.hc22000 - path to file
C:\Users\username\Desktop\your folder\pass.txt[/CODE] - path to the file with passwords
Press enter and wait for the password to be found. The more powerful the video card, the faster the password will be cleared.

If the iron does not allow reaching high flows, then there are two options:

1. First site select our file and indicate the soap. It seems like it's free shareware, that is, light passwords are free.

2. The second site is something like a freelance platform for brut, payment in cue ball.

That's all for us. We hope that it was not in vain that you wrote the article and it will be really useful to you. Thank you for the attention!
 
Top