CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/spec/file_fixtures/modules/auxiliary/auxiliary_rubocopped.rb
Views: 1904
1
##
2
# This module requires Metasploit: https://metasploit.com/download
3
# Current source: https://github.com/rapid7/metasploit-framework
4
##
5
6
class MetasploitModule < Msf::Auxiliary
7
def initialize(info = {})
8
super(
9
update_info(
10
info,
11
'Name' => 'Rubocopped Auxiliary Module for RSpec',
12
'Description' => 'Test!',
13
'Author' => 'Unknown',
14
'License' => MSF_LICENSE,
15
'References' => [
16
['EDB', '48308']
17
]
18
)
19
)
20
end
21
end
22
23