A little fix for this hack..
Code:
if(!file_exists("games/" . $play . ".swf")) {
eval(print_standard_error('error_flash'));
}
is new.
A little error output, if someone edits the adress input line.
Code:
<?php
/*======================================================================*\
|| #################################################################### ||
|| # vB Flash Player 1.0 for vB3 RC2 by Erwin Loh # ||
|| # ---------------------------------------------------------------- # ||
|| # All PHP code in this file is ?2000-2004 Dr. Erwin Loh # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| #################################################################### ||
\*======================================================================*/
//Parameters:
//
//play = name of SWF file (without the .swf extension - make sure the capitals and small letters are the same!)
//w = width of Flash movie or game
//h = height of Flash movie or game
//b = background color of Flash movie or game (in hex WITHOUT the # eg. 000000 or FFFFFF)
//
//default width and height is 600 x 400
//default background color is the same as your forum page background color
//format - http://www.your-forums.com/forums/fl...?play=filename
//Or to customize width, height and background color
//format - http://www.your-forums.com/forums/fl...h=768&b=000000
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'flash');
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array();
// pre-cache templates used by all actions
$globaltemplates = array(
'flash',
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
// #######################################################################
// ######################## START MAIN SCRIPT ############################
// #######################################################################
// guests cannot access Flash Player
if ($bbuserinfo['userid'] == 0)
{
print_no_permission();
}
// ensure variables get passed through
globalize($_REQUEST, array(
'play' => STR,
'w' => STR,
'h' => STR,
'b' => STR,
));
// draw nav bar
$navbits = array('' => $play);
// main script
if(!file_exists("games/" . $play . ".swf")) {
eval(print_standard_error('error_flash'));
}
if ($play) {
if (!$w) {
$w = 600;
}
if (!$h) {
$h = 400;
}
}
else
{
eval(print_standard_error('error_flash'));
}
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('flash') . '");');
?>