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_untidy.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
7
# XXX: invalid super class for an auxiliary module
8
class MetasploitModule < Msf::Exploit
9
# XXX: auxiliary modules don't use Rank
10
Rank = LowRanking
11
def initialize(info = {})
12
super(
13
update_info(
14
info,
15
'Name' => 'Untidy Auxiliary Module for RSpec',
16
'Description' => 'Test!',
17
'Author' => %w(Unknown),
18
'License' => MSF_LICENSE,
19
)
20
)
21
end
22
end
23
24