Module: Msf::Payload::Custom::Options

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

Overview

This module provides datastore option definitions and helper methods for payload modules that support UUIDs

Instance Method Summary collapse

Instance Method Details

#initialize(info = {}) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/msf/core/payload/custom/options.rb', line 8

def initialize(info = {})
  super
  register_options(
    [
      Msf::OptPath.new('SHELLCODE_FILE', [false, 'Shellcode bin to launch', nil])
    ], self.class)
end