A tool to generate reverse shell code with provided host ip address and port. Useful for e.g. CTF and HackTheBox challenges.
go get -u github.com/mskri/reverse-shell-generatorreverse-shell-generator --host 10.168.13.20 --port 4444Listen to connections with e.g.
nc -vnlp 4444Build and run with
go run .you can also pass the flags to go run .
go run . --host 127.0.0.1 --port 4444or build binary and run it manually
go build .
./reverse-shell-generator --host 127.0.0.1 --port 4444