CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf/core/module/reliability.rb
Views: 11784
1
module Msf::Module::Reliability
2
extend ActiveSupport::Concern
3
4
module ClassMethods
5
def reliability
6
instance = self.new
7
instance.notes['Reliability'] || []
8
end
9
end
10
11
def reliability
12
self.class.reliability
13
end
14
15
def reliability_to_s
16
reliability * ', '
17
end
18
end
19