├── .gitignore ├── .goreleaser.yml ├── .travis.yml ├── LICENSE.md ├── Makefile ├── README.md ├── cmd └── shellz │ ├── enable.go │ ├── help.go │ ├── list.go │ ├── main.go │ ├── run.go │ ├── tunnel.go │ ├── utils.go │ └── vars.go ├── core ├── timeouts.go └── version.go ├── go.mod ├── go.sum ├── logo.png ├── models ├── identity.go ├── paths.go ├── proxy.go ├── shell.go ├── storage.go └── tunnel.go ├── plugins ├── factory.go ├── http.go ├── log.go ├── plugin.go └── tcp.go ├── release.stork └── session ├── kube.go ├── session.go ├── ssh.go ├── ssh_tun.go ├── ssh_utils.go ├── telnet.go └── winrm.go /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | dist 3 | .idea 4 | /shellz -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/README.md -------------------------------------------------------------------------------- /cmd/shellz/enable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/enable.go -------------------------------------------------------------------------------- /cmd/shellz/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/help.go -------------------------------------------------------------------------------- /cmd/shellz/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/list.go -------------------------------------------------------------------------------- /cmd/shellz/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/main.go -------------------------------------------------------------------------------- /cmd/shellz/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/run.go -------------------------------------------------------------------------------- /cmd/shellz/tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/tunnel.go -------------------------------------------------------------------------------- /cmd/shellz/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/utils.go -------------------------------------------------------------------------------- /cmd/shellz/vars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/cmd/shellz/vars.go -------------------------------------------------------------------------------- /core/timeouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/core/timeouts.go -------------------------------------------------------------------------------- /core/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/core/version.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/go.sum -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/logo.png -------------------------------------------------------------------------------- /models/identity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/models/identity.go -------------------------------------------------------------------------------- /models/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/models/paths.go -------------------------------------------------------------------------------- /models/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/models/proxy.go -------------------------------------------------------------------------------- /models/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/models/shell.go -------------------------------------------------------------------------------- /models/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/models/storage.go -------------------------------------------------------------------------------- /models/tunnel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/models/tunnel.go -------------------------------------------------------------------------------- /plugins/factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/plugins/factory.go -------------------------------------------------------------------------------- /plugins/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/plugins/http.go -------------------------------------------------------------------------------- /plugins/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/plugins/log.go -------------------------------------------------------------------------------- /plugins/plugin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/plugins/plugin.go -------------------------------------------------------------------------------- /plugins/tcp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/plugins/tcp.go -------------------------------------------------------------------------------- /release.stork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/release.stork -------------------------------------------------------------------------------- /session/kube.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/kube.go -------------------------------------------------------------------------------- /session/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/session.go -------------------------------------------------------------------------------- /session/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/ssh.go -------------------------------------------------------------------------------- /session/ssh_tun.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/ssh_tun.go -------------------------------------------------------------------------------- /session/ssh_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/ssh_utils.go -------------------------------------------------------------------------------- /session/telnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/telnet.go -------------------------------------------------------------------------------- /session/winrm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evilsocket/shellz/HEAD/session/winrm.go --------------------------------------------------------------------------------