2007-02-18 00:10:39 +00:00
|
|
|
##
|
2010-04-30 08:40:19 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2007-02-18 00:10:39 +00:00
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2007-02-18 00:10:39 +00:00
|
|
|
##
|
|
|
|
|
2005-07-11 05:15:30 +00:00
|
|
|
require 'msf/core'
|
2006-02-21 03:10:58 +00:00
|
|
|
require 'msf/core/payload/windows/exec'
|
2005-07-11 05:15:30 +00:00
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# Executes a command on the target machine
|
|
|
|
#
|
|
|
|
###
|
2008-10-02 05:23:59 +00:00
|
|
|
module Metasploit3
|
2005-07-11 05:15:30 +00:00
|
|
|
|
2006-02-21 03:10:58 +00:00
|
|
|
include Msf::Payload::Windows::Exec
|
2005-07-11 05:15:30 +00:00
|
|
|
|
2010-04-30 08:40:19 +00:00
|
|
|
end
|