Files
metasploit-gs/lib/msf/core/module/reliability.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
297 B
Ruby
Raw Normal View History

module Msf::Module::Reliability
extend ActiveSupport::Concern
module ClassMethods
def reliability
instance = self.new
2018-09-26 21:13:37 -05:00
instance.notes['Reliability'] || []
end
end
def reliability
self.class.reliability
end
def reliability_to_s
reliability * ', '
end
end