Module: Msf::Payload::Type

Defined in:
lib/msf/core/payload.rb

Overview

Payload types

Constant Summary collapse

Single =

Single payload type. These types of payloads are self contained and do not go through any staging.

(1 << 0)
Stager =

The stager half of a staged payload. Its responsibility in life is to read in the stage and execute it.

(1 << 1)
Stage =

The stage half of a staged payload. This payload performs whatever arbitrary task it's designed to do, possibly making use of the same connection that the stager used to read the stage in on, if applicable.

(1 << 2)
Adapter =
(1 << 3)