An open API service indexing awesome lists of open source software.

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

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.