class MetasploitPayloads::NotFoundError
Error
raised when a Metasploit Payloads file doesn’t exist.
Attributes
path[R]
Public Class Methods
new(path = '')
click to toggle source
Calls superclass method
# File lib/metasploit-payloads/error.rb, line 11 def initialize(path = '') @path = path super("Meterpreter path #{@path} not found. Ensure antivirus is not enabled, or reinstall Metasploit.") end