Skip to content

Commit 5fdea91

Browse files
committed
Change naming
1 parent f33e994 commit 5fdea91

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/metasploit/framework/login_scanner/redis.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ module LoginScanner
1010
# It is responsible for taking a single target, and a list of credentials
1111
# and attempting them. It then saves the results.
1212

13-
class REDIS
13+
class Redis
1414
include Metasploit::Framework::LoginScanner::Base
1515
include Metasploit::Framework::LoginScanner::RexSocket
1616
include Metasploit::Framework::Tcp::Client

modules/auxiliary/scanner/redis/redis_login.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
require 'metasploit/framework/login_scanner/redis'
88
require 'metasploit/framework/credential_collection'
99

10-
class Metasploit3 < Msf::Auxiliary
10+
class MetasploitModule < Msf::Auxiliary
11+
1112
include Msf::Exploit::Remote::Tcp
1213
include Msf::Auxiliary::Redis
1314
include Msf::Auxiliary::Scanner
@@ -52,7 +53,7 @@ def run_host(ip)
5253

5354
cred_collection = prepend_db_passwords(cred_collection)
5455

55-
scanner = Metasploit::Framework::LoginScanner::REDIS.new(
56+
scanner = Metasploit::Framework::LoginScanner::Redis.new(
5657
host: ip,
5758
port: rport,
5859
proxies: datastore['PROXIES'],

0 commit comments

Comments
 (0)