Disable payload UUID registration by default

bug/bundler_fix
HD Moore 2015-05-20 23:56:15 -05:00
parent e07576ce20
commit 27406204ed
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ module Msf::Payload::UUID::Options
Msf::OptString.new('PayloadUUIDSeed', [ false, 'A string to use when generating the payload UUID (deterministic)']),
Msf::OptString.new('PayloadUUIDRaw', [ false, 'A hex string representing the raw 8-byte PUID value for the UUID']),
Msf::OptString.new('PayloadUUIDName', [ false, 'A human-friendly name to reference this unique payload (requires tracking)']),
Msf::OptBool.new('PayloadUUIDTracking', [ true, 'Whether or not to automatically register generated UUIDs', true]),
Msf::OptBool.new('PayloadUUIDTracking', [ true, 'Whether or not to automatically register generated UUIDs', false]),
], self.class)
end