Module: Msf::Module::UUID

Included in:
Msf::Module
Defined in:
lib/msf/core/module/uuid.rb

Overview

NOTE: Metasploit does not use real UUIDs currently. To modify this to be a real UUID we will need to do a database migration. See: github.com/rapid7/metasploit-framework/pull/20170

Instance Attribute Summary collapse

Instance Attribute Details

#uuidString

Returns A unique identifier for this module instance.

Returns:

  • (String)

    A unique identifier for this module instance



13
14
15
# File 'lib/msf/core/module/uuid.rb', line 13

def uuid
  @uuid ||= UUID_CHARS.sample(8).join
end