Files
metasploit-gs/lib/msf/core/payload/custom/options.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
362 B
Ruby
Raw Normal View History

2022-05-02 12:09:25 -05:00
# -*- coding => binary -*-
#
# This module provides datastore option definitions and helper methods for payload modules that support UUIDs
#
module Msf::Payload::Custom::Options
def initialize(info = {})
super
register_options(
[
2022-09-07 15:43:50 -05:00
Msf::OptPath.new('SHELLCODE_FILE', [false, 'Shellcode bin to launch', nil])
2022-05-02 12:09:25 -05:00
], self.class)
end
end