Lucene search
K

Osclass 3.4.2 Local File Inclusion Vulnerability

🗓️ 01 Jan 2015 00:00:00Reported by EgiXType 
zdt
 zdt
🔗 0day.today👁 50 Views

Osclass 3.4.2 Local File Inclusion Vulnerability in ajax.php script allows arbitrary file inclusion and PHP code execution on Windows systems. Update to version 3.4.3 or later

Related
Code
ReporterTitlePublishedViews
Family
CNVD
Osclass 'ajax.php' local file inclusion vulnerability
4 Jan 201500:00
cnvd
CVE
CVE-2014-8084
5 Jan 201520:00
cve
Cvelist
CVE-2014-8084
5 Jan 201520:00
cvelist
EUVD
EUVD-2014-7933
7 Oct 202500:30
euvd
NVD
CVE-2014-8084
5 Jan 201520:59
nvd
Packet Storm
Osclass 3.4.2 Local File Inclusion
31 Dec 201400:00
packetstorm
Prion
Directory traversal
5 Jan 201520:59
prion
securityvulns
[KIS-2014-15] Osclass <= 3.4.2 (ajax.php) Local File Inclusion Vulnerability
2 Jan 201500:00
securityvulns
securityvulns
Web applications security vulnerabilities summary (PHP, ASP, JSP, CGI, Perl)
2 Jan 201500:00
securityvulns
--------------------------------------------------------------
Osclass <= 3.4.2 (ajax.php) Local File Inclusion Vulnerability
--------------------------------------------------------------


[-] Software Link:

http://osclass.org/  


[-] Affected Versions:

Version 3.4.2 and probably prior versions.


[-] Vulnerability Description:

The vulnerable code is located in the /oc-includes/osclass/controller/ajax.php script:

225.       case 'custom': // Execute via AJAX custom file
226.           if(Params::existParam('route')) {
227.               $routes = Rewrite::newInstance()->getRoutes();
228.               $rid = Params::getParam('route');
229.               $file = '../';
230.               if(isset($routes[$rid]) && isset($routes[$rid]['file'])) {
231.                   $file = $routes[$rid]['file'];
232.               }
233.           } else {
234.               // DEPRECATED: Disclosed path in URL is deprecated, use routes instead
235.               // This will be REMOVED in 3.4
236.               $file = Params::getParam('ajaxfile');
237.           }
238.  
239.           if($file == '') {
240.               echo json_encode(array('error' => 'no action defined'));
241.               break;
242.           }
243.  
244.           // valid file?
245.           if( stripos($file, '../') !== false  || stripos($file, '/admin/') !== false ) ...
246.               echo json_encode(array('error' => 'no valid ajaxFile'));
247.               break;
248.           }
249.  
250.           if( !file_exists(osc_plugins_path() . $file) ) {
251.               echo json_encode(array('error' => "ajaxFile doesn't exist"));
252.               break;
253.           }
254.  
255.           require_once osc_plugins_path() . $file;

User input passed through the "ajaxfile" request parameter when handling a "custom" action within
the AJAX interface is not properly sanitized being used in a call to the "require_once()" function
at line 255. This can be exploited to include arbitrary local files and execute arbitrary PHP code
when the application is running on Windows.


[-] Solution:

Update to version 3.4.3 or later.


[-] Disclosure Timeline:

[29/09/2014] - Vendor notified
[29/09/2014] - Vendor response
[09/10/2014] - Version 3.4.3 released: http://blog.osclass.org/2014/10/09/osclass-3-4-3
[09/10/2014] - CVE number requested
[11/10/2014] - CVE number assigned
[31/12/2014] - Public disclosure


[-] CVE Reference:

The Common Vulnerabilities and Exposures project (cve.mitre.org)
has assigned the name CVE-2014-8084 to this vulnerability.


[-] Credits:

Vulnerability discovered by Egidio Romano.

#  0day.today [2018-01-10]  #

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

01 Jan 2015 00:00Current
6.3Medium risk
Vulners AI Score6.3
EPSS0.02119
50