Minor update to xdb_side_brute, see #1083

Adds a typo fix and adds an explicit VERBOSE option.
unstable
Tod Beardsley 2011-12-05 15:11:09 -06:00
parent 37516134f0
commit 4da2c32734
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class Metasploit3 < Msf::Auxiliary
'Name' => 'Oracle XML DB SID Discovery via Brute Force', 'Name' => 'Oracle XML DB SID Discovery via Brute Force',
'Description' => %q{ 'Description' => %q{
This module attempts to retrieve the sid from the Oracle XML DB httpd server, This module attempts to retrieve the sid from the Oracle XML DB httpd server,
utilizing Pete Finnigan s default oracle password list. utilizing Pete Finnigan's default oracle password list.
}, },
'Version' => '$Revision$', 'Version' => '$Revision$',
'References' => 'References' =>
@ -37,6 +37,7 @@ class Metasploit3 < Msf::Auxiliary
register_options( register_options(
[ [
OptString.new('CSVFILE', [ false, 'The file that contains a list of default accounts.', File.join(Msf::Config.install_root, 'data', 'wordlists', 'oracle_default_passwords.csv')]), OptString.new('CSVFILE', [ false, 'The file that contains a list of default accounts.', File.join(Msf::Config.install_root, 'data', 'wordlists', 'oracle_default_passwords.csv')]),
OptBool.new('VERBOSE', [ false, 'Enable verbose console output.', false]),
Opt::RPORT(8080), Opt::RPORT(8080),
], self.class) ], self.class)
deregister_options('DBUSER','DBPASS') deregister_options('DBUSER','DBPASS')