exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Kaltura 13.1.0 Code Execution / Cross Site Scripting

Kaltura 13.1.0 Code Execution / Cross Site Scripting
Posted Sep 23, 2017
Authored by Robin Verton

Kaltura versions 13.1.0 and below suffer from code execution and cross site scripting vulnerabilities.

tags | exploit, vulnerability, code execution, xss
advisories | CVE-2017-14141, CVE-2017-14142, CVE-2017-14143
SHA-256 | f13d7e1066f62d0ca0b0da505366a1d539c7943e2d61a9efc629ec92d9a34e9f

Kaltura 13.1.0 Code Execution / Cross Site Scripting

Change Mirror Download
                          Telekom Security
security.telekom.com

Advisory: Kaltura - Remote Code Execution and Cross-Site Scripting
Release Date: 2017/09/12
Author: Robin Verton (robin.verton@telekom.de)
CVE: CVE-2017-14141, CVE-2017-14142, CVE-2017-14143

Application: Kaltura <= 13.1.0
Risk: Critical
Vendor Status: Kaltura 13.2.0 was released to fix this vulnerabilities.

Overview:

Quote from Wikipedia:
"Kaltura is a New York-based software company founded in 2006. Kaltura states
that its mission is to power any video experience. Kaltura operates in four
major markets for video based solutions: Cloud TV (AKA OTT TV) for operators
and media companies, OVP (Online Video Platform) offered mostly to media
companies and brands looking to distribute content or monetize it, EdVP
(Education Video Platform) offered to educational institutions who are
increasingly relying on video as for teaching and learning, and EVP
(Enterprise Video Platform) offered to enterprises who use video for
collaboration, communications and marketing."

Kaltura is installed on a lot of high profiles website like banking websites,
universities, manufacturers, multimedia corporations etc.

Multiple vulnerabilities were identified in the current release of the
Kaltura Video platform. It was discovered that Kaltura passes unfiltered user
input to unserialize(), leading to the execution of PHP code. One of this
vulnerabilities can also be triggered unauthenticated. Several other
Cross-Site Scripting vulnerabilities were found.

Details:

1) Unauthenticated Remote Code Execution through unserialize() from cookie data

Because of a hardcoded cookie secret, the cookie signature validation can
be bypassed and malicious user input can be passed via the 'userzone' cookie
to the unserialize() function:

abstract class kalturaAction extends sfAction
{
private $cookieSecret = 'y3tAno3therS$cr3T';

// [...]

protected function getUserzoneCookie()
{
$cookie = $this->getContext()->getRequest()->getCookie('userzone');
$length = strlen($cookie);
if ($length <= 0)
return null;

$serialized_data = substr($cookie, 0, $length - 32);
$hash_signiture = substr($cookie, $length - 32);

// check the signiture
if (md5($serialized_data . $this->cookieSecret) != $hash_signiture)
return null;

$userzone_data = unserialize(base64_decode($serialized_data));

To pass this validation the base64 encoded serialized object has to be
hashed and this hash appended to the encoded data. A Zend Framework POP
chain [1] can then be used to execute PHP code when unserializing. When
using PHP7 a different chain has to be used because the e-modifier for
preg_replace is not available anymore.

To execute the getUserzoneCookie() function the getAllEntriesAction has to
be called with a valid entry ID. This ID can be obtained from any public
video object which is embedded and typically begins with '0_'.

2) Authenticated Remote Code Execution through unserialize() in the admin panel

The admin panel provides a few 'Developer System Helper' functions to
encode/decode user supplied data. The 'wiki_decode' function will take user
input and pass it nearly untouched to unserialize():

// slightly formatted for better readability
if ( $algo == "wiki_encode" )
{
$res = str_replace(
array ( "|" , "/") , array ("|01" , "|02"),
base64_encode(serialize($str))
);
}

By passing a base64 encoded malicious serialized object, PHP code can be
executed.

3) Multiple Cross-Site Scripting vulnerabilities under the API path

A few cross-site scripting vulnerabilities were found earlier this year and
fixed [2]. However, this fix was insufficient because PHPs strip_tags()
function only strips tags and is not adequate to secure against XSS
vulnerabilities. There are a few places where this can be exploited to
inject javascript code:

// server/admin_console/web/tools/bigRedButton.php, line 8
$partnerId = strip_tags($_GET['partnerId']);

// [...]

<script>
var partnerId = <?php echo $partnerId; ?>;

As can be seen above no tags need to be inserted here to execute javascript
code. A simple partnerId=alert(1) will be executed in this scenario. This
also affects a few other files.

server/admin_console/web/tools/bigRedButton.php
- $_GET['partnerId']
- $_GET['playerVersion']

server/admin_console/web/tools/bigRedButtonPtsPoc.php
- $_GET['partnerId']
- $_GET['playerVersion']
- $_GET['secret']
- $_GET['entryId']
- $_GET['adminUiConfId']
- $_GET['uiConfId']

server/admin_console/web/tools/AkamaiBroadcaster.php
- $_GET['streamUsername']
- $_GET['streamPassword']
- $_GET['streamRemoteId']
- $_GET['streamRemoteBackupId']
- $_GET['entryId']

server/admin_console/web/tools/XmlJWPlayer.php
- $_GET['entryId']

server/alpha/web/lib/bigRedButtonPtsPocHlsjs.php
- $_GET['partnerId']
- $_GET['playerVersion']

Additional notes:

The already published Server Side Request Forgery attack [3] was not fixed
properly, because only an additional check for the http(s) protocol was added.
This still allows to talk to some backend services (like the memcached) or
other machines. There is a whitelist in place to make this more secure, but I
could not find a way how to set this up. This is likely responsible for a
lot of insecure default installations of Kaltura in the wild.

References:

[1]: https://www.owasp.org/images/9/9e/Utilizing-Code-Reuse-Or-Return-Oriented-Programming-In-PHP-Application-Exploits.pdf
[2]: https://github.com/kaltura/server/pull/5304/files
[3]: http://www.security-assessment.com/files/documents/advisory/Kaltura-Multiple-Vulns.pdf

Recommendation:

It is recommended to upgrade to the latest version of Kaltura.

Disclosure Timeline:

16. August 2017 - Notified vendor
22. August 2017 - Remote Command Execution vulnerabilities fixed
05. September 2017 - Cross-Site scripting vulnerabilities fixed
11. September 2017 - Kaltura 13.2.0 released
12. September 2017 - Released advisory

About Telekom Security:

Telekom Security is the security provider for Deutsche Telekom and Deutsche Telekom customers.

https://security.telekom.com
https://telekomsecurity.github.io
http://www.sicherheitstacho.eu
Login or Register to add favorites

File Archive:

October 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Oct 1st
    39 Files
  • 2
    Oct 2nd
    23 Files
  • 3
    Oct 3rd
    18 Files
  • 4
    Oct 4th
    20 Files
  • 5
    Oct 5th
    0 Files
  • 6
    Oct 6th
    0 Files
  • 7
    Oct 7th
    17 Files
  • 8
    Oct 8th
    66 Files
  • 9
    Oct 9th
    25 Files
  • 10
    Oct 10th
    20 Files
  • 11
    Oct 11th
    21 Files
  • 12
    Oct 12th
    0 Files
  • 13
    Oct 13th
    0 Files
  • 14
    Oct 14th
    14 Files
  • 15
    Oct 15th
    49 Files
  • 16
    Oct 16th
    0 Files
  • 17
    Oct 17th
    0 Files
  • 18
    Oct 18th
    0 Files
  • 19
    Oct 19th
    0 Files
  • 20
    Oct 20th
    0 Files
  • 21
    Oct 21st
    0 Files
  • 22
    Oct 22nd
    0 Files
  • 23
    Oct 23rd
    0 Files
  • 24
    Oct 24th
    0 Files
  • 25
    Oct 25th
    0 Files
  • 26
    Oct 26th
    0 Files
  • 27
    Oct 27th
    0 Files
  • 28
    Oct 28th
    0 Files
  • 29
    Oct 29th
    0 Files
  • 30
    Oct 30th
    0 Files
  • 31
    Oct 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close