From 9594693ecb2d2bc44f4ca0d190c38785f0c12b9a Mon Sep 17 00:00:00 2001 From: nmonkee Date: Thu, 28 Mar 2013 14:16:19 +0000 Subject: [PATCH] vprint_status changed to vprint_error as requested --- .../scanner/sap/sap_soap_rfc_eps_delete_file_smb_relay.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/auxiliary/scanner/sap/sap_soap_rfc_eps_delete_file_smb_relay.rb b/modules/auxiliary/scanner/sap/sap_soap_rfc_eps_delete_file_smb_relay.rb index 0ba677a98b..dafb29a2d4 100755 --- a/modules/auxiliary/scanner/sap/sap_soap_rfc_eps_delete_file_smb_relay.rb +++ b/modules/auxiliary/scanner/sap/sap_soap_rfc_eps_delete_file_smb_relay.rb @@ -81,9 +81,9 @@ class Metasploit4 < Msf::Auxiliary 'Content-Type' => 'text/xml; charset=UTF-8',} }, 45) if res - vprint_status("[SAP] #{rhost}:#{rport} - Error code: " + res.code.to_s) - vprint_status("[SAP] #{rhost}:#{rport} - Error title: " + res.message.to_s) - vprint_status("[SAP] #{rhost}:#{rport} - Error message: " + res.body.to_s) + vprint_error("[SAP] #{rhost}:#{rport} - Error code: " + res.code.to_s) + vprint_error("[SAP] #{rhost}:#{rport} - Error title: " + res.message.to_s) + vprint_error("[SAP] #{rhost}:#{rport} - Error message: " + res.body.to_s) end rescue ::Rex::ConnectionError print_error("#{rhost}:#{rport} - Unable to connect")