Module: Arachni::Element::Capabilities::Mutable::Format

Defined in:
lib/arachni/element/capabilities/mutable.rb

Overview

Bitfields that describe the common payload formatting options.

Author:

Constant Summary collapse

STRAIGHT =

Leaves the injection string as is.

1 << 0
APPEND =

Appends the injection string to the default value of the input vector.
(If no default value exists Arachni will choose one.)

1 << 1
NULL =

Terminates the injection string with a null character.

1 << 2
SEMICOLON =

Prefix the string with a ';', useful for command injection checks

1 << 3