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
|