├── .gitignore ├── LICENSE ├── README.md ├── SHELL_C.py ├── SHELL_S.py ├── TCP SHELL.png ├── libs └── clib.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/README.md -------------------------------------------------------------------------------- /SHELL_C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/SHELL_C.py -------------------------------------------------------------------------------- /SHELL_S.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/SHELL_S.py -------------------------------------------------------------------------------- /TCP SHELL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/TCP SHELL.png -------------------------------------------------------------------------------- /libs/clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cy4nguy/PythonReverseShellDotpy/HEAD/libs/clib.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | colorama==0.4.1 --------------------------------------------------------------------------------