Files
metasploit-gs/lib/msf/core/exploit/remote/sunrpc.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

186 lines
5.6 KiB
Ruby
Raw Normal View History

# -*- coding: binary -*-
2006-01-21 02:44:54 +00:00
module Msf
###
#
# This mixin provides utility methods for interacting with a SunRPC service on
# a remote machine. These methods may generally be useful in the context of
2010-02-03 20:30:09 +00:00
# exploitation. This mixin extends the Tcp exploit mixin. Only one SunRPC
2006-01-21 02:44:54 +00:00
# service can be accessed at a time using this class.
2010-02-03 20:30:09 +00:00
#
# http://www.ietf.org/rfc/rfc1057.txt
2006-01-21 02:44:54 +00:00
#
###
module Exploit::Remote::SunRPC
include Exploit::Remote::Tcp
MSG_ACCEPTED = 0
SUCCESS = 0 # RPC executed successfully
PROG_UMAVAIL = 1 # Remote hasn't exported program
PROG_MISMATCH = 2 # Remote can't support version #
PROC_UNAVAIL = 3 # Program can't support procedure
GARBAGE_ARGS = 4 # Procedure can't decode params'
2010-02-06 21:50:11 +00:00
SYSTEM_ERR = 5 # System encountered some error
2006-02-01 22:31:28 +00:00
2006-01-21 02:44:54 +00:00
def initialize(info = {})
super
register_evasion_options(
[
2016-03-15 18:35:32 -05:00
OptBool.new('ONCRPC::tcp_request_fragmentation', [false, 'Enable fragmentation of TCP ONC/RPC requests', false]),
], Msf::Exploit::Remote::SunRPC
)
2006-01-21 02:44:54 +00:00
register_advanced_options(
[
OptInt.new('TIMEOUT', [true, 'Number of seconds to wait for responses to RPC calls', 10])
# XXX: Use portmapper to do call - Direct portmap to make the request to the program portmap_req
2006-01-21 02:44:54 +00:00
], Msf::Exploit::Remote::SunRPC)
register_options(
[
# XXX: XPORT
2006-01-21 02:44:54 +00:00
Opt::RHOST,
Opt::RPORT(111),
], Msf::Exploit::Remote::SunRPC
)
end
2013-08-30 16:28:33 -05:00
def sunrpc_create(protocol, program, version, time_out = timeout)
self.rpcobj = Rex::Proto::SunRPC::Client.new(
:rhost => rhost,
:rport => rport.to_i,
:proto => protocol,
:program => program,
:timeout => time_out,
:version => version,
:context => {
'Msf' => framework,
'MsfExploit' => self,
}
)
2013-08-30 16:28:33 -05:00
if datastore['ONCRPC::tcp_request_fragmentation']
self.rpcobj.should_fragment = 1
end
2013-08-30 16:28:33 -05:00
ret = rpcobj.create
raise ::Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - No response to Portmap request" unless ret
2013-08-30 16:28:33 -05:00
begin
arr = Rex::Encoder::XDR.decode!(ret, Integer, Integer, Integer, String, Integer, Integer)
rescue Rex::ArgumentError
raise Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - XDR decoding failed in #{__callee__}"
end
if arr[1] != MSG_ACCEPTED || arr[4] != SUCCESS || arr[5] == 0
2013-09-26 09:42:38 -05:00
err = "#{rhost}:#{rport} - SunRPC - Portmap request failed: "
err << 'Message not accepted' if arr[1] != MSG_ACCEPTED
err << 'RPC did not execute' if arr[4] != SUCCESS
err << 'Program not available' if arr[5] == 0
raise ::Rex::Proto::SunRPC::RPCError, err
end
2013-08-30 16:28:33 -05:00
rpcobj.pport = arr[5]
2006-01-21 02:44:54 +00:00
end
2013-08-30 16:28:33 -05:00
2015-01-07 11:41:34 +02:00
def sunrpc_call(proc, buf, timeout = timeout())
ret = rpcobj.call(proc, buf, timeout)
raise ::Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - No response to SunRPC call for procedure: #{proc}" unless ret
2013-08-30 16:28:33 -05:00
begin
arr = Rex::Encoder::XDR.decode!(ret, Integer, Integer, Integer, String, Integer)
rescue Rex::ArgumentError
raise Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - XDR decoding failed in #{__callee__}"
end
if arr[1] != MSG_ACCEPTED || arr[4] != SUCCESS
2010-02-03 20:30:09 +00:00
progname = progresolv(rpcobj.program)
err = "SunRPC call for program #{rpcobj.program} [#{progname}], procedure #{proc}, failed: "
2010-02-06 21:50:11 +00:00
if (arr[1] != MSG_ACCEPTED)
2010-02-08 00:59:29 +00:00
err << 'Message not accepted'
2010-02-06 21:50:11 +00:00
elsif (arr[4] and arr[4] != SUCCESS)
case arr[4]
when PROG_UMAVAIL then err << "Program Unavailable"
when PROG_MISMATCH then err << "Program Version Mismatch"
when PROC_UNAVAIL then err << "Procedure Unavailable"
when GARBAGE_ARGS then err << "Garbage Arguments"
when SYSTEM_ERR then err << "System Error"
else err << "Unknown Error"
end
end
raise ::Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - #{err}"
end
return ret
2006-01-21 02:44:54 +00:00
end
2013-08-30 16:28:33 -05:00
2010-02-08 00:59:29 +00:00
def sunrpc_callsock
self.rpcobj.call_sock
end
2013-08-30 16:28:33 -05:00
2006-01-21 02:44:54 +00:00
def sunrpc_destroy
rpcobj.destroy
rpcobj = nil
end
2013-08-30 16:28:33 -05:00
2006-01-21 02:44:54 +00:00
def sunrpc_authnull(*args)
rpcobj.authnull_create(*args)
end
2013-08-30 16:28:33 -05:00
2006-01-21 02:44:54 +00:00
def sunrpc_authunix(*args)
rpcobj.authunix_create(*args)
end
2013-08-30 16:28:33 -05:00
# XXX: Incomplete. Just moved from Rex::Proto::SunRPC::Client
def portmap_qry()
2010-02-03 20:30:09 +00:00
ret = portmap_req()
begin
arr = Rex::Encoder::XDR.decode!(ret, Integer, Integer, Integer, String, Integer)
rescue Rex::ArgumentError
raise Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - XDR decoding failed in #{__callee__}"
end
if arr[1] != MSG_ACCEPTED || arr[4] != SUCCESS || arr[5] == 0
2010-02-03 20:30:09 +00:00
progname = progresolv(rpcobj.program)
2013-09-26 09:42:38 -05:00
err = "Query for program #{rpcobj.program} [#{progname}] failed: "
case arr[4]
when PROG_UMAVAIL then err << "Program Unavailable"
when PROG_MISMATCH then err << "Program Version Mismatch"
when PROC_UNAVAIL then err << "Procedure Unavailable"
when GARBAGE_ARGS then err << "Garbage Arguments"
else err << "Unknown Error"
end
raise ::Rex::Proto::SunRPC::RPCError, "#{rhost}:#{rport} - SunRPC - #{err}"
end
2013-08-30 16:28:33 -05:00
return ret
end
2013-08-30 16:28:33 -05:00
def progresolv(number)
2013-09-26 20:34:48 +01:00
names = File.join(Msf::Config.data_directory, "wordlists", "rpc_names.txt")
2010-09-26 21:02:00 +00:00
File.open(names, "rb").each_line do |line|
next if line.empty? || line =~ /^\s*#/
2013-08-30 16:28:33 -05:00
if line =~ /^(\S+?)\s+(\d+)/ && number == $2.to_i
return $1
end
end
2013-08-30 16:28:33 -05:00
return "UNKNOWN-#{number}"
end
2013-08-30 16:28:33 -05:00
# Returns the time that this module will wait for RPC responses, in seconds
def timeout
datastore['TIMEOUT']
end
2010-02-03 20:30:09 +00:00
# Used to track the last SunRPC context
2006-01-21 02:44:54 +00:00
attr_accessor :rpcobj
end
2010-02-03 20:30:09 +00:00
end
2010-02-08 00:59:29 +00:00