https://github.com/saghul/tornado-backdoor
Interactive Python interpreter over TCP for Tornado applications
https://github.com/saghul/tornado-backdoor
Last synced: over 1 year ago
JSON representation
Interactive Python interpreter over TCP for Tornado applications
- Host: GitHub
- URL: https://github.com/saghul/tornado-backdoor
- Owner: saghul
- License: mit
- Created: 2012-09-17T16:38:12.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-09-17T16:39:13.000Z (almost 14 years ago)
- Last Synced: 2025-03-16T23:41:59.977Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 92.8 KB
- Stars: 9
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
===================================
A backdoor for Tornado applications
===================================
Having a Python interative interpreter running alongside you application
can come useful for debugging. This module runs a Python interactive
interpreter over a TCP connection, acting as a server, where multiple
clients can connect and which does not block the server from
handling other requests.
Source code is on `GitHub `_.
Using it
========
Check `backdoor.py` located in the examples directory. It will run a
backdoor server on port 1234. You can connect to it using netcat
as follows:
::
nc localhost 1234
Author
======
Saúl Ibarra Corretgé
License
=======
tornado-backdoor uses the MIT license, check LICENSE file.