module Metasploit::Credential::Exporter::Base

Defines attributes common to allow exporters.

Public Class Methods

new(attributes={}) click to toggle source

@param attributes [Hash{Symbol => String,nil}]

# File lib/metasploit/credential/exporter/base.rb, line 29
def initialize(attributes={})
  attributes.each do |attribute, value|
    public_send("#{attribute}=", value)
  end
end