├── .gitignore ├── LICENSE ├── Pyshell ├── README.md ├── _config.yml ├── modules ├── __init__.py └── pyshell.py └── payloads └── pyshell.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MindPatch/pyshell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MindPatch/pyshell/HEAD/LICENSE -------------------------------------------------------------------------------- /Pyshell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MindPatch/pyshell/HEAD/Pyshell -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MindPatch/pyshell/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MindPatch/pyshell/HEAD/_config.yml -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/pyshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MindPatch/pyshell/HEAD/modules/pyshell.py -------------------------------------------------------------------------------- /payloads/pyshell.txt: -------------------------------------------------------------------------------- 1 | HERE Your Payloads :) 2 | --------------------------------------------------------------------------------