├── .gitattributes ├── .github └── workflows │ └── docker-build.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── _config.yml ├── client ├── backdoor.php ├── client.py └── selfUpdate.py ├── controller └── controller.py └── server ├── Dockerfile ├── docker_run.sh └── server.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/_config.yml -------------------------------------------------------------------------------- /client/backdoor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/client/backdoor.php -------------------------------------------------------------------------------- /client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/client/client.py -------------------------------------------------------------------------------- /client/selfUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/client/selfUpdate.py -------------------------------------------------------------------------------- /controller/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/controller/controller.py -------------------------------------------------------------------------------- /server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/server/Dockerfile -------------------------------------------------------------------------------- /server/docker_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/server/docker_run.sh -------------------------------------------------------------------------------- /server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sayak-brm/ShellBot/HEAD/server/server.py --------------------------------------------------------------------------------