Skip to content

Instantly share code, notes, and snippets.

@yuuichi-fujioka
Created February 5, 2014 00:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuuichi-fujioka/8815363 to your computer and use it in GitHub Desktop.
Save yuuichi-fujioka/8815363 to your computer and use it in GitHub Desktop.
Eventlet Backdoor
import time
import eventlet
from eventlet import backdoor
def main():
eventlet.monkey_patch()
eventlet.spawn(backdoor.backdoor_server, eventlet.listen(('localhost', 3000)))
while True:
time.sleep(1)
print 'egg'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment