Files
metasploit-gs/lib/msf/core/payload/single.rb
T
Matt Miller 5676117bff last of normalized docs from last night
git-svn-id: file:///home/svn/incoming/trunk@3030 4d416f70-5f16-0410-b530-b9f4589650da
2005-11-15 15:11:43 +00:00

21 lines
387 B
Ruby

require 'msf/core'
###
#
# Base mixin interface for use by single payloads. Single
# payloads are differentiated from stagers and stages by the
# fact that they run as part of the first stage and have
# no subsequent stages.
#
###
module Msf::Payload::Single
#
# Sets the payload type to that of a single payload.
#
def payload_type
return Msf::Payload::Type::Single
end
end