Move redis password option to non-advanced

bug/bundler_fix
Jon Hart 2015-12-11 17:03:49 -08:00
parent 1fecd9846c
commit 9cec3d9e6b
No known key found for this signature in database
GPG Key ID: 2FA9F0A3AFA8E9D3
1 changed files with 3 additions and 3 deletions

View File

@ -19,14 +19,14 @@ module Msf
super
register_options(
[
Opt::RPORT(6379)
Opt::RPORT(6379),
OptString.new('Password', [false, 'Redis password for authentication test', 'foobared'])
]
)
register_advanced_options(
[
OptInt.new('READ_TIMEOUT', [true, 'Seconds to wait while reading redis responses', 2]),
OptString.new('Password', [false, 'Redis password for authentication test', 'foobared'])
OptInt.new('READ_TIMEOUT', [true, 'Seconds to wait while reading redis responses', 2])
]
)
end