2012-12-11 19:02:06 +04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
"""
|
|
|
|
Copyright (c) 2006-2012 sqlmap developers (http://sqlmap.org/)
|
|
|
|
See the file 'doc/COPYING' for copying permission
|
|
|
|
"""
|
|
|
|
|
2012-12-12 14:54:59 +04:00
|
|
|
import sys
|
|
|
|
import xmlrpclib
|
2012-12-11 19:02:06 +04:00
|
|
|
|
2012-12-12 14:54:59 +04:00
|
|
|
try:
|
|
|
|
from SimpleXMLRPCServer import SimpleXMLRPCServer
|
|
|
|
|
|
|
|
from lib.controller.controller import start
|
|
|
|
from lib.core.datatype import AttribDict
|
|
|
|
from lib.core.data import cmdLineOptions
|
|
|
|
from lib.core.data import logger
|
|
|
|
from lib.core.option import init
|
|
|
|
from lib.core.settings import UNICODE_ENCODING
|
|
|
|
from lib.core.settings import XMLRPC_SERVER_PORT
|
|
|
|
except ImportError:
|
2012-12-12 15:07:56 +04:00
|
|
|
XMLRPC_SERVER_PORT = 8776
|
2012-12-11 19:02:06 +04:00
|
|
|
|
|
|
|
class XMLRPCServer:
|
2012-12-12 14:54:59 +04:00
|
|
|
def __init__(self, port):
|
|
|
|
self.port = port
|
2012-12-11 19:02:06 +04:00
|
|
|
self.reset()
|
|
|
|
|
|
|
|
def reset(self):
|
|
|
|
self.options = AttribDict(cmdLineOptions)
|
|
|
|
|
|
|
|
def set_option(self, name, value):
|
|
|
|
self.options[name] = value
|
|
|
|
|
|
|
|
def get_option(self, name):
|
|
|
|
return self.options[name]
|
|
|
|
|
|
|
|
def get_option_names(self):
|
|
|
|
return self.options.keys()
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
init(self.options, True)
|
|
|
|
return start()
|
|
|
|
|
|
|
|
def serve(self):
|
2012-12-12 14:54:59 +04:00
|
|
|
server = SimpleXMLRPCServer(addr=("", self.port), logRequests=False, allow_none=True, encoding=UNICODE_ENCODING)
|
2012-12-11 19:02:06 +04:00
|
|
|
server.register_function(self.reset)
|
|
|
|
server.register_function(self.set_option)
|
|
|
|
server.register_function(self.get_option)
|
|
|
|
server.register_function(self.get_option_names)
|
|
|
|
server.register_function(self.run)
|
2012-12-12 14:54:59 +04:00
|
|
|
logger.info("Registering RPC methods: %s" % str(server.system_listMethods()).strip("[]"))
|
|
|
|
server.register_introspection_functions()
|
|
|
|
logger.info("Running XML-RPC server at '0.0.0.0:%d'..." % self.port)
|
2012-12-11 19:02:06 +04:00
|
|
|
server.serve_forever()
|
2012-12-12 14:54:59 +04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
try:
|
|
|
|
import readline
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
2012-12-12 15:01:18 +04:00
|
|
|
try:
|
2012-12-12 15:07:56 +04:00
|
|
|
addr = "http://localhost:%d" % (int(sys.argv[1]) if len(sys.argv) > 1 else XMLRPC_SERVER_PORT)
|
2012-12-12 15:01:18 +04:00
|
|
|
print "[i] Starting debug XML-RPC client to '%s'..." % addr
|
2012-12-12 15:07:56 +04:00
|
|
|
|
2012-12-12 15:01:18 +04:00
|
|
|
server = xmlrpclib.ServerProxy(addr)
|
|
|
|
print "[i] Available RPC methods: %s" % str(server.system.listMethods()).strip("[]")
|
|
|
|
print "[i] Server instance name: 'server'"
|
|
|
|
print "[i] Sample usage: 'server.system.listMethods()'"
|
|
|
|
except Exception, ex:
|
|
|
|
print "[x] '%s'" % str(ex)
|
|
|
|
else:
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
_ = raw_input("> ")
|
|
|
|
if not _.startswith("print"):
|
|
|
|
print eval(_) or ""
|
|
|
|
else:
|
|
|
|
exec(_)
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
exit(0)
|
|
|
|
except Exception, ex:
|
|
|
|
print "[x] '%s'" % str(ex)
|