From a44640c9fc594670361ec1a98d64eb61bc90ccf4 Mon Sep 17 00:00:00 2001 From: jvazquez-r7 Date: Fri, 7 Nov 2014 20:48:04 -0600 Subject: [PATCH] Use single quotes --- modules/auxiliary/gather/eventlog_cred_disclosure.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/auxiliary/gather/eventlog_cred_disclosure.rb b/modules/auxiliary/gather/eventlog_cred_disclosure.rb index ab18374f67..beeeabcec4 100644 --- a/modules/auxiliary/gather/eventlog_cred_disclosure.rb +++ b/modules/auxiliary/gather/eventlog_cred_disclosure.rb @@ -146,7 +146,7 @@ class Metasploit3 < Msf::Auxiliary msg = "Got login to #{host_ipaddress} | running " msg << type << (subtype != '' ? " | #{subtype}" : '') msg << ' | username: ' - msg << (domain_name != "" ? "#{domain_name}\\#{username}" : username) + msg << (domain_name != '' ? "#{domain_name}\\#{username}" : username) msg << " | password: #{password}" print_good(msg)