Move redis password option to non-advanced
parent
1fecd9846c
commit
9cec3d9e6b
|
@ -19,14 +19,14 @@ module Msf
|
||||||
super
|
super
|
||||||
register_options(
|
register_options(
|
||||||
[
|
[
|
||||||
Opt::RPORT(6379)
|
Opt::RPORT(6379),
|
||||||
|
OptString.new('Password', [false, 'Redis password for authentication test', 'foobared'])
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
register_advanced_options(
|
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
|
end
|
||||||
|
|
Loading…
Reference in New Issue