10.3. Providing an Administrative Python ShellExample 10-1 demonstrated how to provide an interactive shell through SSH. That example implemented its own language with a small set of commands. But there's another kind of shell that you can run over SSH: the same interactive Python prompt you know and love from the command line. 10.3.1. How Do I Do That?
The
twisted.conch.
Example 10-3. manholeserver.py
from twisted.internet import reactor
from twisted.web import server, resource
from twisted.cred import portal, checkers
from twisted.conch import manhole, manhole_ssh
class LinksPage(resource.Resource):
isLeaf = 1
def _ _init_ _(self, links):
resource.Resource._ _init_ _(self)
self.links = links
def render(self, request):
return "<ul>" + "".join([
"<li><a href='%s'>%s</a></li>" % (link, title)
for title, link in self.links.items( )]) + "</ul>"
links = {'Twisted': 'http://twistedmatrix.com/',
'Python': 'http://python.org'}
site = server.Site(LinksPage(links))
reactor.listenTCP(8000, site)
def getManholeFactory(namespace, **passwords):
realm = manhole_ssh.TerminalRealm( )
def getManhole(_): return manhole.Manhole(namespace)
realm.chainedProtocolFactory.protocolFactory = getManhole
p = portal.Portal(realm)
p.registerChecker(
checkers.InMemoryUsernamePasswordDatabaseDontUse(**passwords))
f = manhole_ssh.ConchFactory(p)
return f
reactor.listenTCP(2222, getManholeFactory(globals( ), admin='aaa'))
reactor.run( )
manholeserver.py will start up a web server on port 8000 and an SSH server on port 2222. Figure 10-1 shows what the home page looks like when the server starts. Figure 10-1. The default manholeserver.py web page
Now log in using SSH. You'll get a Python prompt, with full access to all the objects in the server. Try modifying the links dictionary:
$
ssh admin@localhost -p 2222
admin@localhost's password:
aaa
>>>
dir( )
['LinksPage', '__builtins__', '__doc__', '__file__', '_ _name_ _', 'checkers',
'getManholeFactory', 'links', 'manhole', 'manhole_ssh', 'portal', 'reactor',
'resource', 'server', 'site']
>>>
links
{'Python': 'http://python.org', 'Twisted': 'http://twistedmatrix.com/'}
>>>
links["Abe Fettig"] = "http://fettig.net"
>>>
links["O'Reilly"] = "http://oreilly.com"
>>>
links
{'Python': 'http://python.org', "O'Reilly": 'http://oreilly.com', 'Twisted': 'http://
twistedmatrix.com/', 'Abe Fettig': 'http://fettig.net'}
>>>
Then refresh the home page of the web server. Figure 10-2 shows how your changes will be reflected on the web site. Figure 10-2. The modified manholeserver.py web page
10.3.2. How Does That Work?
Example 10-3 defines a function called
getManholeFactory
that makes running a manhole SSH server trivially easy.
getManholeFactory
takes an argument called
namespace
, which is a dictionary defining which Python objects to make available, and then a number of keyword arguments representing usernames and passwords. It constructs a
manhole_ssh.TerminalRealm
and sets its
chainedProtocolFactory.protocolFactory
attribute to an anonymous function that returns
manhole.Manhole
objects for the
Like its
Example 10-3 creates a manhole factory using the built-in globals( ) function, which returns a dictionary of all the objects in the current global namespace. When you log in through SSH, you can see all the global objects in manholeserver.py , including the links dictionary. Because this dictionary is also being used to generate the home page of the web site, any changes you make through SSH are instantly reflected on the Web.
|