├── .gitignore ├── README.md ├── encodePayload.cpp ├── encode_payload.py └── proxyshell.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .vscode/ 3 | proxyshell-poc 4 | __pycache__/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-r3bot/Proxyshell-Exchange/HEAD/README.md -------------------------------------------------------------------------------- /encodePayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-r3bot/Proxyshell-Exchange/HEAD/encodePayload.cpp -------------------------------------------------------------------------------- /encode_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-r3bot/Proxyshell-Exchange/HEAD/encode_payload.py -------------------------------------------------------------------------------- /proxyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mr-r3bot/Proxyshell-Exchange/HEAD/proxyshell.py --------------------------------------------------------------------------------