aboutsummaryrefslogtreecommitdiffstats
path: root/src/nyancat.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/nyancat.py')
-rwxr-xr-xsrc/nyancat.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/nyancat.py b/src/nyancat.py
new file mode 100755
index 0000000..039581c
--- /dev/null
+++ b/src/nyancat.py
@@ -0,0 +1,41 @@
+#!/usr/bin/env python
+import SocketServer
+import threading, os
+from subprocess import Popen, PIPE
+from telnetsrvlib import TelnetHandler
+
+class TNS(SocketServer.ThreadingMixIn, SocketServer.TCPServer):
+ allow_reuse_address = True
+
+class TNH(TelnetHandler):
+ def handle(self):
+ print self.TERM
+ p = Popen(["./nyancat"], shell=False, stdout=PIPE, stdin=PIPE, bufsize=0)
+ if (self.TERM.lower().find("xterm") != -1):
+ p.stdin.write("1\n")
+ elif (self.TERM.lower().find("linux") != -1):
+ p.stdin.write("3\n")
+ elif (self.TERM.lower().find("fallback") != -1):
+ p.stdin.write("4\n")
+ elif (self.TERM.lower().find("rxvt") == 0):
+ p.stdin.write("3\n")
+ else:
+ p.stdin.write("2\n")
+ while 1:
+ s = p.stdout.read(1024)
+ try:
+ self.write(s)
+ except:
+ p.kill()
+ return
+
+class serverThread(threading.Thread):
+ def run(self):
+ tns = TNS(("0.0.0.0", 23), TNH)
+ tns.serve_forever()
+
+if __name__ == "__main__":
+ t = serverThread()
+ t.start()
+ raw_input("Let me know when to stop.")
+ os.kill(os.getpid(), 9)