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/spec/file_fixtures/modules/auxiliary/auxiliary_tidy.rb
Views: 11783
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(update_info(info,
9
'Name' => 'Tidy Auxiliary Module for RSpec',
10
'Description' => 'Test!',
11
'Author' => 'Unknown',
12
'License' => MSF_LICENSE
13
))
14
end
15
end
16
17