fix error with rdp scanníng

bug/bundler_fix
Christian Mehlmauer 2017-08-09 21:32:15 +02:00
parent e64eaf1573
commit 1b6b29c22b
No known key found for this signature in database
GPG Key ID: DCF54A05D6E62591
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class MetasploitModule < Msf::Auxiliary
sock.put(@probe)
response = sock.get_once(-1)
if response
if RDP_RE.match?(response)
if RDP_RE.match(response)
# XXX: it might be helpful to decode the response and show what was selected.
print_good("Identified RDP")
return true