├── .gitignore ├── Makefile ├── README.md ├── hershell.go ├── meterpreter └── meterpreter.go └── shell ├── shell_default.go └── shell_windows.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/README.md -------------------------------------------------------------------------------- /hershell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/hershell.go -------------------------------------------------------------------------------- /meterpreter/meterpreter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/meterpreter/meterpreter.go -------------------------------------------------------------------------------- /shell/shell_default.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/shell/shell_default.go -------------------------------------------------------------------------------- /shell/shell_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sysdream/hershell/HEAD/shell/shell_windows.go --------------------------------------------------------------------------------