mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
ac160be94e
git-svn-id: file:///home/svn/framework3/trunk@6065 4d416f70-5f16-0410-b530-b9f4589650da
138 lines
2.9 KiB
Ruby
138 lines
2.9 KiB
Ruby
#!/usr/bin/env ruby
|
|
#
|
|
# This plugin provides an msf daemon interface that spawns a listener on a
|
|
# defined port (default 55553) and gives each connecting client its own
|
|
# console interface. These consoles all share the same framework instance.
|
|
# Be aware that the console instance that spawns on the port is entirely
|
|
# unauthenticated, so realize that you have been warned.
|
|
#
|
|
|
|
require "msf/core/rpc"
|
|
require "fileutils"
|
|
|
|
module Msf
|
|
|
|
###
|
|
#
|
|
# This class implements the msfd plugin interface.
|
|
#
|
|
###
|
|
class Plugin::XMLRPC < Msf::Plugin
|
|
|
|
#
|
|
# The default local hostname that the server listens on.
|
|
#
|
|
DefaultHost = "127.0.0.1"
|
|
|
|
#
|
|
# The default local port that the server listens on.
|
|
#
|
|
DefaultPort = 55553
|
|
|
|
#
|
|
# ServerPort
|
|
#
|
|
# The local port to listen on for connections. The default is 55553
|
|
#
|
|
def initialize(framework, opts)
|
|
super
|
|
|
|
host = opts['ServerHost'] || DefaultHost
|
|
port = opts['ServerPort'] || DefaultPort
|
|
ssl = (opts['SSL'] and opts['SSL'].to_s =~ /^[ty]/i) ? true : false
|
|
cert = opts['SSLCert']
|
|
ckey = opts['SSLKey']
|
|
|
|
user = opts['User'] || "msf"
|
|
pass = opts['Pass'] || ::Rex::Text.rand_text_alphanumeric(8)
|
|
|
|
print_status(" XMLRPC Service: #{host}:#{port} #{ssl ? " (SSL)" : ""}")
|
|
print_status("XMLRPC Username: #{user}")
|
|
print_status("XMLRPC Password: #{pass}")
|
|
|
|
@users = [ [user,pass] ]
|
|
self.server = ::Msf::RPC::Service.new(host,port,ssl,cert,ckey)
|
|
|
|
# If the run in foreground flag is not specified, then go ahead and fire
|
|
# it off in a worker thread.
|
|
if (opts['RunInForeground'] != true)
|
|
Thread.new {
|
|
run
|
|
}
|
|
end
|
|
end
|
|
|
|
#
|
|
# Returns 'xmlrpc'
|
|
#
|
|
def name
|
|
"xmlrpc"
|
|
end
|
|
|
|
#
|
|
# Returns the plugin description.
|
|
#
|
|
def desc
|
|
"Provides a XMLRPC interface over a listening TCP port."
|
|
end
|
|
|
|
#
|
|
# The meat of the plugin, sets up handlers for requests
|
|
#
|
|
def run
|
|
|
|
# Initialize the list of authenticated sessions
|
|
@tokens = {}
|
|
|
|
args = [framework,@tokens,@users]
|
|
|
|
# Add handlers for every class
|
|
self.server.add_handler(::XMLRPC::iPIMethods("auth"),
|
|
::Msf::RPC::Auth.new(*args)
|
|
)
|
|
|
|
self.server.add_handler(::XMLRPC::iPIMethods("core"),
|
|
::Msf::RPC::Core.new(*args)
|
|
)
|
|
|
|
self.server.add_handler(::XMLRPC::iPIMethods("session"),
|
|
::Msf::RPC::Session.new(*args)
|
|
)
|
|
|
|
self.server.add_handler(::XMLRPC::iPIMethods("job"),
|
|
::Msf::RPC::Job.new(*args)
|
|
)
|
|
|
|
self.server.add_handler(::XMLRPC::iPIMethods("module"),
|
|
::Msf::RPC::Module.new(*args)
|
|
)
|
|
|
|
# Set the default/catch-all handler
|
|
self.server.set_default_handler do |name, *args|
|
|
raise ::XMLRPC::FaultException.new(-99, "Method #{name} missing or wrong number of parameters!")
|
|
end
|
|
|
|
# Start the actual service
|
|
self.server.start
|
|
|
|
# Wait for the service to complete
|
|
self.server.wait
|
|
end
|
|
|
|
#
|
|
# Closes the listener service.
|
|
#
|
|
def cleanup
|
|
self.server.stop if self.server
|
|
self.server = nil
|
|
end
|
|
|
|
#
|
|
# The XMLRPC instance.
|
|
#
|
|
attr_accessor :server
|
|
|
|
end
|
|
|
|
end
|