2003-11-04 03:34:24 -05:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
2004-04-06 04:16:02 -04:00
|
|
|
import sys, os, socket, threading, traceback, base64
|
2003-11-10 03:49:50 -05:00
|
|
|
import paramiko
|
2003-11-04 03:34:24 -05:00
|
|
|
|
|
|
|
# setup logging
|
2004-04-06 04:16:02 -04:00
|
|
|
paramiko.util.log_to_file('demo_server.log')
|
2003-11-04 03:34:24 -05:00
|
|
|
|
2004-11-06 15:32:08 -05:00
|
|
|
#host_key = paramiko.RSAKey(filename='tests/test_rsa.key')
|
|
|
|
host_key = paramiko.DSSKey(filename='tests/test_dss.key')
|
2003-12-30 02:18:20 -05:00
|
|
|
|
2003-12-30 17:24:21 -05:00
|
|
|
print 'Read key: ' + paramiko.util.hexify(host_key.get_fingerprint())
|
2003-11-04 03:34:24 -05:00
|
|
|
|
2003-11-09 16:14:21 -05:00
|
|
|
|
2004-08-26 20:57:40 -04:00
|
|
|
class Server (paramiko.ServerInterface):
|
2003-12-30 17:24:21 -05:00
|
|
|
# 'data' is the output of base64.encodestring(str(key))
|
|
|
|
data = 'AAAAB3NzaC1yc2EAAAABIwAAAIEAyO4it3fHlmGZWJaGrfeHOVY7RWO3P9M7hpfAu7jJ2d7eothvfeuoRFtJwhUmZDluRdFyhFY/hFAh76PJKGAusIqIQKlkJxMCKDqIexkgHAfID/6mqvmnSJf0b5W8v5h2pI/stOSwTQ+pxVhwJ9ctYDhRSlF0iTUWT10hcuO4Ks8='
|
|
|
|
good_pub_key = paramiko.RSAKey(data=base64.decodestring(data))
|
|
|
|
|
2004-09-03 18:39:20 -04:00
|
|
|
def __init__(self):
|
|
|
|
self.event = threading.Event()
|
|
|
|
|
2003-11-09 16:14:21 -05:00
|
|
|
def check_channel_request(self, kind, chanid):
|
|
|
|
if kind == 'session':
|
2004-09-03 18:39:20 -04:00
|
|
|
return paramiko.OPEN_SUCCEEDED
|
|
|
|
return paramiko.OPEN_FAILED_ADMINISTRATIVELY_PROHIBITED
|
2003-11-09 16:14:21 -05:00
|
|
|
|
|
|
|
def check_auth_password(self, username, password):
|
|
|
|
if (username == 'robey') and (password == 'foo'):
|
2004-09-03 18:39:20 -04:00
|
|
|
return paramiko.AUTH_SUCCESSFUL
|
|
|
|
return paramiko.AUTH_FAILED
|
2003-11-09 16:14:21 -05:00
|
|
|
|
2003-12-30 17:24:21 -05:00
|
|
|
def check_auth_publickey(self, username, key):
|
2004-01-04 04:29:13 -05:00
|
|
|
print 'Auth attempt with key: ' + paramiko.util.hexify(key.get_fingerprint())
|
2003-12-30 17:24:21 -05:00
|
|
|
if (username == 'robey') and (key == self.good_pub_key):
|
2004-09-03 18:39:20 -04:00
|
|
|
return paramiko.AUTH_SUCCESSFUL
|
|
|
|
return paramiko.AUTH_FAILED
|
2003-12-30 17:24:21 -05:00
|
|
|
|
2003-12-31 01:31:43 -05:00
|
|
|
def get_allowed_auths(self, username):
|
|
|
|
return 'password,publickey'
|
|
|
|
|
2004-09-03 18:39:20 -04:00
|
|
|
def check_channel_shell_request(self, channel):
|
|
|
|
self.event.set()
|
2003-11-09 23:54:02 -05:00
|
|
|
return True
|
|
|
|
|
2004-09-03 18:39:20 -04:00
|
|
|
def check_channel_pty_request(self, channel, term, width, height, pixelwidth,
|
|
|
|
pixelheight, modes):
|
2003-11-09 23:54:02 -05:00
|
|
|
return True
|
|
|
|
|
2003-11-09 16:14:21 -05:00
|
|
|
|
2003-11-04 03:34:24 -05:00
|
|
|
# now connect
|
|
|
|
try:
|
|
|
|
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
|
|
|
sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
|
|
|
|
sock.bind(('', 2200))
|
|
|
|
except Exception, e:
|
|
|
|
print '*** Bind failed: ' + str(e)
|
|
|
|
traceback.print_exc()
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
try:
|
|
|
|
sock.listen(100)
|
2003-12-24 15:49:38 -05:00
|
|
|
print 'Listening for connection ...'
|
2003-11-04 03:34:24 -05:00
|
|
|
client, addr = sock.accept()
|
|
|
|
except Exception, e:
|
|
|
|
print '*** Listen/accept failed: ' + str(e)
|
|
|
|
traceback.print_exc()
|
|
|
|
sys.exit(1)
|
|
|
|
|
2003-12-24 15:49:38 -05:00
|
|
|
print 'Got a connection!'
|
|
|
|
|
2003-11-04 03:34:24 -05:00
|
|
|
try:
|
|
|
|
event = threading.Event()
|
2004-08-26 20:57:40 -04:00
|
|
|
t = paramiko.Transport(client)
|
2003-12-27 22:20:42 -05:00
|
|
|
try:
|
|
|
|
t.load_server_moduli()
|
|
|
|
except:
|
|
|
|
print '(Failed to load moduli -- gex will be unsupported.)'
|
|
|
|
raise
|
2003-11-04 03:34:24 -05:00
|
|
|
t.add_server_key(host_key)
|
2004-09-03 18:39:20 -04:00
|
|
|
server = Server()
|
|
|
|
t.start_server(event, server)
|
2003-12-30 17:24:21 -05:00
|
|
|
while 1:
|
|
|
|
event.wait(0.1)
|
|
|
|
if not t.is_active():
|
|
|
|
print '*** SSH negotiation failed.'
|
|
|
|
sys.exit(1)
|
|
|
|
if event.isSet():
|
|
|
|
break
|
2003-11-04 03:34:24 -05:00
|
|
|
# print repr(t)
|
2003-11-09 16:14:21 -05:00
|
|
|
|
2003-11-10 01:52:35 -05:00
|
|
|
# wait for auth
|
2003-12-27 22:20:42 -05:00
|
|
|
chan = t.accept(20)
|
2003-11-10 01:52:35 -05:00
|
|
|
if chan is None:
|
|
|
|
print '*** No channel.'
|
|
|
|
sys.exit(1)
|
2003-12-27 22:20:42 -05:00
|
|
|
print 'Authenticated!'
|
2004-09-03 18:39:20 -04:00
|
|
|
server.event.wait(10)
|
|
|
|
if not server.event.isSet():
|
2003-11-09 23:54:02 -05:00
|
|
|
print '*** Client never asked for a shell.'
|
|
|
|
sys.exit(1)
|
|
|
|
|
2003-11-09 16:14:21 -05:00
|
|
|
chan.send('\r\n\r\nWelcome to my dorky little BBS!\r\n\r\n')
|
|
|
|
chan.send('We are on fire all the time! Hooray! Candy corn for everyone!\r\n')
|
|
|
|
chan.send('Happy birthday to Robot Dave!\r\n\r\n')
|
|
|
|
chan.send('Username: ')
|
|
|
|
f = chan.makefile('rU')
|
|
|
|
username = f.readline().strip('\r\n')
|
|
|
|
chan.send('\r\nI don\'t like you, ' + username + '.\r\n')
|
|
|
|
chan.close()
|
|
|
|
|
2003-11-04 03:34:24 -05:00
|
|
|
except Exception, e:
|
|
|
|
print '*** Caught exception: ' + str(e.__class__) + ': ' + str(e)
|
|
|
|
traceback.print_exc()
|
|
|
|
try:
|
|
|
|
t.close()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
sys.exit(1)
|
|
|
|
|