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 8class 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 22end 23 24