Fix PASSWORD datastore option
parent
545cb11736
commit
2e7d07ff53
|
@ -20,7 +20,7 @@ module Msf
|
|||
register_options(
|
||||
[
|
||||
Opt::RPORT(6379),
|
||||
OptString.new('Password', [false, 'Redis password for authentication test', 'foobared'])
|
||||
OptString.new('PASSWORD', [false, 'Redis password for authentication test', 'foobared'])
|
||||
]
|
||||
)
|
||||
|
||||
|
|
|
@ -10,10 +10,10 @@ require 'metasploit/framework/credential_collection'
|
|||
class MetasploitModule < Msf::Auxiliary
|
||||
|
||||
include Msf::Exploit::Remote::Tcp
|
||||
include Msf::Auxiliary::Redis
|
||||
include Msf::Auxiliary::Scanner
|
||||
include Msf::Auxiliary::Report
|
||||
include Msf::Auxiliary::AuthBrute
|
||||
include Msf::Auxiliary::Redis
|
||||
|
||||
def initialize(info = {})
|
||||
super(
|
||||
|
|
Loading…
Reference in New Issue