Update netgear_password_disclosure.rb

bug/bundler_fix
Carter 2017-02-08 09:14:39 -05:00 committed by GitHub
parent 2dfff95669
commit fd935c8e3c
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class MetasploitModule < Msf::Auxiliary
username = username.strip!
password = password.strip!
end
if username == "" || password == ""
if username.empty? || password.empty?
print_error("No Creds found")
else
print_good("Creds found: #{username}/#{password}")