class MetasploitPayloads::HashMismatchError

Error raised when a Metasploit Payloads file’s hash does not match what is defined in the manifest file.

Attributes

path[R]

Public Class Methods

new(path = '') click to toggle source
Calls superclass method
# File lib/metasploit-payloads/error.rb, line 31
def initialize(path = '')
  @path = path
  super("Meterpreter path #{@path} does not match the hash defined in the Metasploit Payloads manifest file.")
end