├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── data ├── payloads.py └── types.py ├── demo ├── Dockerfile └── README.md ├── modules ├── commands.py ├── connection.py ├── flags.py ├── local.py ├── logger.py └── transform.py ├── requirements.txt └── web2shell.py /.gitignore: -------------------------------------------------------------------------------- 1 | **pycache** 2 | .vscode* 3 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/README.md -------------------------------------------------------------------------------- /data/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/data/payloads.py -------------------------------------------------------------------------------- /data/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/data/types.py -------------------------------------------------------------------------------- /demo/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/demo/Dockerfile -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/demo/README.md -------------------------------------------------------------------------------- /modules/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/modules/commands.py -------------------------------------------------------------------------------- /modules/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/modules/connection.py -------------------------------------------------------------------------------- /modules/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/modules/flags.py -------------------------------------------------------------------------------- /modules/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/modules/local.py -------------------------------------------------------------------------------- /modules/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/modules/logger.py -------------------------------------------------------------------------------- /modules/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/modules/transform.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.31.0 2 | psutil==5.9.5 3 | pre-commit==3.3.1 4 | -------------------------------------------------------------------------------- /web2shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejedev/web2shell/HEAD/web2shell.py --------------------------------------------------------------------------------