├── .gitignore ├── README.md ├── raycharles ├── __init__.py ├── __main__.py ├── payloads.py ├── shell.py ├── tampers.py └── utils.py ├── requirements.txt ├── screenshot.png ├── screenshot2.png └── vuln_app.py /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | **/__pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/README.md -------------------------------------------------------------------------------- /raycharles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /raycharles/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/raycharles/__main__.py -------------------------------------------------------------------------------- /raycharles/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/raycharles/payloads.py -------------------------------------------------------------------------------- /raycharles/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/raycharles/shell.py -------------------------------------------------------------------------------- /raycharles/tampers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/raycharles/tampers.py -------------------------------------------------------------------------------- /raycharles/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/raycharles/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/screenshot.png -------------------------------------------------------------------------------- /screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/screenshot2.png -------------------------------------------------------------------------------- /vuln_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lhitori/raycharles/HEAD/vuln_app.py --------------------------------------------------------------------------------