Move Password option to redis mixin
parent
38d0b0a0f2
commit
ac47c87af4
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue