2006-01-21 02:44:54 +00:00
|
|
|
require 'rex/proto/sunrpc'
|
|
|
|
|
|
|
|
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
|
|
|
|
# exploitation. This mixin extends the Tcp exploit mixin. Only one SunRPC
|
|
|
|
# service can be accessed at a time using this class.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
module Exploit::Remote::SunRPC
|
|
|
|
include Exploit::Remote::Tcp
|
|
|
|
|
2006-02-01 22:31:28 +00:00
|
|
|
XDR = Rex::Proto::SunRPC::XDR
|
|
|
|
|
2006-01-21 02:44:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super
|
2006-03-08 19:14:10 +00:00
|
|
|
|
|
|
|
register_evasion_options(
|
|
|
|
[
|
|
|
|
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(
|
|
|
|
[
|
|
|
|
# XXX: Use portmapper to do call
|
|
|
|
], Msf::Exploit::Remote::SunRPC)
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
# XXX: XPORT
|
|
|
|
Opt::RHOST,
|
|
|
|
Opt::RPORT(111),
|
|
|
|
], Msf::Exploit::Remote::SunRPC
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
def sunrpc_create(protocol, program, version)
|
2006-08-13 18:03:28 +00:00
|
|
|
self.rpcobj = Rex::Proto::SunRPC::Client.new(rhost, rport.to_i, protocol, program, version)
|
2006-03-08 19:14:10 +00:00
|
|
|
if datastore['ONCRPC::tcp_request_fragmentation'] == true
|
|
|
|
self.rpcobj.should_fragment = 1
|
|
|
|
end
|
|
|
|
|
2006-01-21 02:44:54 +00:00
|
|
|
# if datastore['XPORT']
|
|
|
|
# rpcobj.pport = datastore['XPORT']
|
|
|
|
# else
|
|
|
|
rpcobj.create
|
|
|
|
# end
|
|
|
|
end
|
|
|
|
|
2008-09-17 01:42:51 +00:00
|
|
|
def sunrpc_call(proc, buf, timeout=60)
|
|
|
|
rpcobj.call(proc, buf, timeout)
|
2006-01-21 02:44:54 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def sunrpc_destroy
|
|
|
|
rpcobj.destroy
|
|
|
|
rpcobj = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def sunrpc_authnull(*args)
|
|
|
|
rpcobj.authnull_create(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def sunrpc_authunix(*args)
|
|
|
|
rpcobj.authunix_create(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Used to track the last SunRPC context
|
|
|
|
attr_accessor :rpcobj
|
|
|
|
end
|
|
|
|
|
2008-10-19 21:03:39 +00:00
|
|
|
end
|