From e4290e40c4fb2bf639f3e866d909e2168b96477a Mon Sep 17 00:00:00 2001 From: HD Moore Date: Tue, 18 Oct 2011 09:10:00 +0000 Subject: [PATCH] Fix the check to not report empty user/pass git-svn-id: file:///home/svn/framework3/trunk@13989 4d416f70-5f16-0410-b530-b9f4589650da --- modules/exploits/windows/http/ca_arcserve_rpc_authbypass.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/exploits/windows/http/ca_arcserve_rpc_authbypass.rb b/modules/exploits/windows/http/ca_arcserve_rpc_authbypass.rb index e11c04bdaf..46176d2b70 100644 --- a/modules/exploits/windows/http/ca_arcserve_rpc_authbypass.rb +++ b/modules/exploits/windows/http/ca_arcserve_rpc_authbypass.rb @@ -114,7 +114,7 @@ class Metasploit3 < Msf::Exploit::Remote } report_auth_info(auth) - if user.nil? or pass.nil? + if user.nil? or pass.nil? or user.empty? or pass.empty? print_error("Failed to collect the username and password") return end