vprint_status changed to vprint_error as requested

unstable
nmonkee 2013-03-28 14:16:19 +00:00
parent f66ffbfa81
commit 9594693ecb
1 changed files with 3 additions and 3 deletions

View File

@ -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")