Removing VERBOSE offenders

unstable
Tod Beardsley 2013-04-15 15:29:56 -05:00
parent 4e42ffd51e
commit 29101bad41
5 changed files with 1 additions and 7 deletions

View File

@ -44,7 +44,6 @@ class Metasploit3 < Msf::Auxiliary
OptString.new('URI', [true, 'The path to users Squiz Matrix installation', '/']),
OptInt.new('ASSETBEGIN', [ true, "Asset ID to start at", 1]),
OptInt.new('ASSETEND', [ true, "Asset ID to stop at", 100]),
OptBool.new('VERBOSE', [ true, "Display all attempts", true ]),
], self.class)
end

View File

@ -37,7 +37,6 @@ class Metasploit3 < Msf::Auxiliary
OptString.new('INTERFACE', [false, 'The name of the interface']),
OptBool.new( 'BIDIRECTIONAL', [true, 'Spoof also the source with the dest',false]),
OptBool.new( 'AUTO_ADD', [true, 'Auto add new host when discovered by the listener',false]),
#OptBool.new( 'VERBOSE', [true, 'Display more output on screen',false]),
OptBool.new( 'LISTENER', [true, 'Use an additionnal thread that will listen to arp request and try to relply as fast as possible', true])
], self.class)

View File

@ -67,8 +67,6 @@ class Metasploit3 < Msf::Exploit::Remote
[false, 'Message Class value', 'IPM.Document.txtfile']),
OptString.new('EXTENSION',
[false, 'The extension used in the fake file name', 'jpg']),
OptString.new('VERBOSE',
[ false, 'Display verbose information', "true"]),
#
# WebDAV options
#

View File

@ -56,7 +56,6 @@ class Metasploit4 < Msf::Exploit::Remote
register_options(
[
Opt::RPORT(50013),
OptBool.new('VERBOSE', [ false, 'Enable verbose output', false ]),
OptString.new('URI', [false, 'Path to the SAP Management Console ', '/']),
OptString.new('USERNAME', [true, 'Username to use', '']),
OptString.new('PASSWORD', [true, 'Password to use', '']),

View File

@ -41,8 +41,7 @@ class Metasploit3 < Msf::Post
OptString.new('DB_USERNAME', [true, 'New sysadmin login', '']),
OptString.new('DB_PASSWORD', [true, 'Password for new sysadmin login', '']),
OptString.new('INSTANCE', [false, 'Name of target SQL Server instance', '']),
OptBool.new('REMOVE_LOGIN', [false, 'Remove DB_USERNAME login from database', 'false']),
OptBool.new('VERBOSE', [false, 'Set how verbose the output should be', 'false']),
OptBool.new('REMOVE_LOGIN', [false, 'Remove DB_USERNAME login from database', 'false'])
], self.class)
end