Move Password option to redis mixin

bug/bundler_fix
Jon Hart 2015-12-11 08:53:11 -08:00
parent 38d0b0a0f2
commit ac47c87af4
No known key found for this signature in database
GPG Key ID: 2FA9F0A3AFA8E9D3
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,8 @@ module Msf
register_advanced_options(
[
OptInt.new('READ_TIMEOUT', [true, 'Seconds to wait while reading redis responses', 2])
OptInt.new('READ_TIMEOUT', [true, 'Seconds to wait while reading redis responses', 2]),
OptString.new('Password', [false, 'Redis password for authentication test', 'foobared'])
]
)
end

View File

@ -43,8 +43,7 @@ class Metasploit3 < Msf::Auxiliary
register_options(
[
OptPath.new('LocalFile', [false, 'Local file to be uploaded']),
OptString.new('RemoteFile', [false, 'Remote file path']),
OptString.new('Password', [false, 'Redis password for authentication test', 'foobared'])
OptString.new('RemoteFile', [false, 'Remote file path'])
]
)
end