A Simple Reverse Shell Listener written in C# that accepts connections to a TCP port and runs cmd.exe
To Compile
- Open the SharpShell.sln file in Visual Studio
- Click "Build Solution"
- Note the path to your new .exe
To Run
- Run the executable on the client you would like a remote command shell access to. By default the application listens on port 12345.
- Use a utility like netcat.exe (or write something in C#) to connect to your listener on port 12345 c:> netcat.exe 10.0.0.55 12345
To Modify
- Edit the source code "Program.cs" and change the default port number. Then click "Build Solution"