├── .gitignore ├── LICENSE ├── README.md ├── c2 ├── c2.go └── resources │ └── .gitkeep └── payload ├── payload.go └── resources └── .gitkeep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rip32700/https-reverse-shell-golang/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rip32700/https-reverse-shell-golang/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rip32700/https-reverse-shell-golang/HEAD/README.md -------------------------------------------------------------------------------- /c2/c2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rip32700/https-reverse-shell-golang/HEAD/c2/c2.go -------------------------------------------------------------------------------- /c2/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /payload/payload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rip32700/https-reverse-shell-golang/HEAD/payload/payload.go -------------------------------------------------------------------------------- /payload/resources/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------