This adds a stub payload for interacting with sotirov's metsvc.exe

git-svn-id: file:///home/svn/framework3/trunk@6526 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2009-05-06 03:24:23 +00:00
parent a3263e9c4a
commit 7f9e020438
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
##
# $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/bind_tcp'
require 'msf/base/sessions/meterpreter'
module Metasploit3
include Msf::Payload::Windows
include Msf::Payload::Single
def initialize(info = {})
super(merge_info(info,
'Name' => 'Windows Meterpreter Service, Bind TCP',
'Version' => '$Revision$',
'Description' => 'Stub payload for interacting with a Meterpreter Service',
'Author' => 'hdm',
'License' => MSF_LICENSE,
'Platform' => 'win',
'Arch' => ARCH_X86,
'Handler' => Msf::Handler::BindTcp,
'Session' => Msf::Sessions::Meterpreter,
'Payload' =>
{
'Offsets' => {},
'Payload' => ""
}
))
end
end