├── README.md ├── install.sh ├── openssh ├── Dockerfile ├── Shanghai ├── entrypoint.sh └── softs │ ├── auth-password.patch │ ├── bash-4.3.30-active-syslog │ ├── LICENSE.md │ ├── README.md │ ├── bashhist_syslog.patch │ ├── check_bash_version.sh │ ├── config-top_syslog.patch │ └── install-bash-syslog.sh │ └── install_ssh.sh └── sandbox_log ├── .gitignore ├── conf └── app.ini ├── logger └── logger.go ├── main.go ├── misc └── functions.go ├── models └── api_data.go ├── settings └── settings.go └── util ├── api.go ├── monitor.go └── plugins ├── plugins.go └── ssh.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/install.sh -------------------------------------------------------------------------------- /openssh/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/Dockerfile -------------------------------------------------------------------------------- /openssh/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/Shanghai -------------------------------------------------------------------------------- /openssh/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/entrypoint.sh -------------------------------------------------------------------------------- /openssh/softs/auth-password.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/auth-password.patch -------------------------------------------------------------------------------- /openssh/softs/bash-4.3.30-active-syslog/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/bash-4.3.30-active-syslog/LICENSE.md -------------------------------------------------------------------------------- /openssh/softs/bash-4.3.30-active-syslog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/bash-4.3.30-active-syslog/README.md -------------------------------------------------------------------------------- /openssh/softs/bash-4.3.30-active-syslog/bashhist_syslog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/bash-4.3.30-active-syslog/bashhist_syslog.patch -------------------------------------------------------------------------------- /openssh/softs/bash-4.3.30-active-syslog/check_bash_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/bash-4.3.30-active-syslog/check_bash_version.sh -------------------------------------------------------------------------------- /openssh/softs/bash-4.3.30-active-syslog/config-top_syslog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/bash-4.3.30-active-syslog/config-top_syslog.patch -------------------------------------------------------------------------------- /openssh/softs/bash-4.3.30-active-syslog/install-bash-syslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/bash-4.3.30-active-syslog/install-bash-syslog.sh -------------------------------------------------------------------------------- /openssh/softs/install_ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/openssh/softs/install_ssh.sh -------------------------------------------------------------------------------- /sandbox_log/.gitignore: -------------------------------------------------------------------------------- 1 | *.sh 2 | .vscode 3 | .idea 4 | client 5 | server 6 | main 7 | sangbox_log 8 | *.iml 9 | -------------------------------------------------------------------------------- /sandbox_log/conf/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/conf/app.ini -------------------------------------------------------------------------------- /sandbox_log/logger/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/logger/logger.go -------------------------------------------------------------------------------- /sandbox_log/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/main.go -------------------------------------------------------------------------------- /sandbox_log/misc/functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/misc/functions.go -------------------------------------------------------------------------------- /sandbox_log/models/api_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/models/api_data.go -------------------------------------------------------------------------------- /sandbox_log/settings/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/settings/settings.go -------------------------------------------------------------------------------- /sandbox_log/util/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/util/api.go -------------------------------------------------------------------------------- /sandbox_log/util/monitor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/util/monitor.go -------------------------------------------------------------------------------- /sandbox_log/util/plugins/plugins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/util/plugins/plugins.go -------------------------------------------------------------------------------- /sandbox_log/util/plugins/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/netxfly/docker_ssh_honeypot/HEAD/sandbox_log/util/plugins/ssh.go --------------------------------------------------------------------------------