Add support for HP imc /BIMS 5.1

bug/bundler_fix
jvazquez-r7 2013-10-20 18:18:34 -05:00
parent b0d32a308a
commit 27078eb5a6
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,7 @@ class Metasploit3 < Msf::Exploit::Remote
'Arch' => ARCH_JAVA,
'Targets' =>
[
[ 'HP Intelligent Management Center 5.2 E0401 / BIMS 5.2 E0401 / Windows', { } ]
[ 'HP Intelligent Management Center 5.1 E0202 - 5.2 E0401 / BIMS 5.1 E0201 - 5.2 E0401 / Windows', { } ]
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Oct 08 2013'))
@ -62,6 +62,8 @@ class Metasploit3 < Msf::Exploit::Remote
if res and res.code == 200 and res.headers['Content-Type'] =~ /application\/doc/ and res.body =~ /com\.h3c\.imc\.bims\.acs\.server\.UploadServlet/
return Exploit::CheckCode::Vulnerable
elsif res and res.code == 405 and res.message =~ /Method Not Allowed/
return Exploit::CheckCode::Appears
end
return Exploit::CheckCode::Safe