Lucene search

K
securityvulnsSecurityvulnsSECURITYVULNS:DOC:27325
HistoryNov 21, 2011 - 12:00 a.m.

FreeWebshop <= 2.2.9 R2 (ajax_save_name.php) Remote Code Execution Vulnerability

2011-11-2100:00:00
vulners.com
28

FreeWebshop <= 2.2.9 R2 (ajax_save_name.php) Remote Code Execution Vulnerability

authorโ€ฆ: Egidio Romano aka EgiX
mailโ€ฆ: n0b0d13s[at]gmail[dot]com
software linkโ€ฆ: http://www.freewebshop.org/
affected versionsโ€ฆ: from 0.9.12 to 2.2.3

[-] vulnerable code in /addons/tinymce/jscripts/tiny_mce/plugins/ajaxfilemanager/ajax_save_name.php

  1. @ob_start();
  2. include_once(CLASS_SESSION_ACTION);
  3. $sessionAction = new SessionAction();
  4. $selectedDocuments = $sessionAction->get();
  5. if(removeTrailingSlash($sessionAction->getFolder()) == getParentPath($_POST['id']) && sizeof($selectedDocuments))
  6. {
  7. if(($key = array_search(basename($_POST['id']), $selectedDocuments)) !== false)
  8. {
  9. $selectedDocuments[$key] = $_POST['value'];
  10. $sessionAction->set($selectedDocuments);
  11. }
  12. echo basename($_POST['id']) . "\n";
  13. displayArray($selectedDocuments);
  14. }elseif(removeTrailingSlash($sessionAction->getFolder()) == removeTrailingSlash($_POST['id']))
  15. {
  16. $sessionAction->setFolder($_POST['id']);
  17. }
  18. writeInfo(ob_get_clean());

An attacker could be able to manipulate the $selectedDocuments array that will be displayed at line 50,
then at line 56 is called the 'writeInfo' function using the current buffer contents as argument.
Like my recently discovered vulnerability (http://www.exploit-db.com/exploits/18075/&#41;, this function
writes into a file called 'data.php' so an attacker could be able to execute arbitrary PHP code.

[-] Disclosure timeline:

[24/11/2011] - Vulnerability discovered
[25/10/2011] - Issue reported to http://www.freewebshop.org/forum/?topic=5235
[15/11/2011] - After three weeks still no fix released
[16/11/2011] - Public disclosure

[-] Proof of concept:

http://www.exploit-db.com/exploits/18121