Use single quotes

bug/bundler_fix
jvazquez-r7 2014-11-07 20:48:04 -06:00
parent 7c1c08fc19
commit a44640c9fc
1 changed files with 1 additions and 1 deletions

View File

@ -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)