├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── etc ├── fakessh.service └── logrotate.conf ├── go.mod ├── go.sum └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | /fakessh 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/README.md -------------------------------------------------------------------------------- /etc/fakessh.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/etc/fakessh.service -------------------------------------------------------------------------------- /etc/logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/etc/logrotate.conf -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iBug/fakessh/HEAD/main.go --------------------------------------------------------------------------------