Skip to content

Commit a44640c

Browse files
committed
Use single quotes
1 parent 7c1c08f commit a44640c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/auxiliary/gather/eventlog_cred_disclosure.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def run
146146
msg = "Got login to #{host_ipaddress} | running "
147147
msg << type << (subtype != '' ? " | #{subtype}" : '')
148148
msg << ' | username: '
149-
msg << (domain_name != "" ? "#{domain_name}\\#{username}" : username)
149+
msg << (domain_name != '' ? "#{domain_name}\\#{username}" : username)
150150
msg << " | password: #{password}"
151151
print_good(msg)
152152

0 commit comments

Comments
 (0)