Files
metasploit-gs/modules/payloads/singles/windows/exec.rb
T
Matt Miller d33675d870 framework now properly handles using singles without handlers as both stages and singles, fixes #115
git-svn-id: file:///home/svn/framework3/trunk@4994 4d416f70-5f16-0410-b530-b9f4589650da
2007-06-16 05:04:03 +00:00

33 lines
527 B
Ruby

##
# $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/projects/Framework/
##
require 'msf/core'
require 'msf/core/payload/windows/exec'
module Msf
module Payloads
module Singles
module Windows
###
#
# Executes a command on the target machine
#
###
module Exec
include Msf::Payload::Windows::Exec
end
end end end end