We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df83114 commit 9276a83Copy full SHA for 9276a83
modules/auxiliary/admin/mysql/mysql_enum.rb
@@ -7,6 +7,7 @@
7
8
class Metasploit3 < Msf::Auxiliary
9
10
+ include Msf::Auxiliary::Report
11
include Msf::Exploit::Remote::MYSQL
12
13
def initialize(info = {})
@@ -85,6 +86,15 @@ def run
85
86
print_status("\tList of Accounts with Password Hashes:")
87
res.each do |row|
88
print_status("\t\tUser: #{row[0]} Host: #{row[1]} Password Hash: #{row[2]}")
89
+ report_auth_info({
90
+ :host => rhost,
91
+ :port => rport,
92
+ :user => row[0],
93
+ :pass => row[2],
94
+ :type => "hash",
95
+ :sname => "mysql",
96
+ :active => true
97
+ })
98
end
99
100
# Only list accounts that can log in with SSL if SSL is enabled
0 commit comments