/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2002 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
?>
// Hack prevention.
if (!empty($HTTP_GET_VARS["GALLERY_BASEDIR"]) ||
!empty($HTTP_POST_VARS["GALLERY_BASEDIR"]) ||
!empty($HTTP_COOKIE_VARS["GALLERY_BASEDIR"])) {
print "Security violation\n";
exit;
}
?>
global $GALLERY_BASEDIR;
global $GALLERY_EMBEDDED_INSIDE;
global $GALLERY_MODULENAME;
global $op;
global $mop;
global $include;
global $name;
/* Detect PHP-Nuke and react accordingly */
if (!strcmp($op, "modload") || !strcmp($mop, "modload")) {
/*
* Change this variable if your Gallery module has a different
* name in the Nuke modules directory.
*/
$GALLERY_MODULENAME = $name;
$GALLERY_BASEDIR = "modules/$GALLERY_MODULENAME/";
$GALLERY_EMBEDDED_INSIDE = "nuke";
if (!$include) {
$include = "albums.php";
}
/*
* As a security precaution, only allow one of the following files to be included.
* If you want Gallery to allow you to include other files (such as the random photo block)
* then you need to add the name of the file including any relevant path components to this
* array.
*/
$safe_to_include =
array(
"add_comment.php",
"add_photos.php",
"album_permissions.php",
"albums.php",
"block-random.php",
"captionator.php",
"create_user.php",
"delete_album.php",
"delete_photo.php",
"delete_user.php",
"do_command.php",
"edit_appearance.php",
"edit_caption.php",
"edit_field.php",
"edit_thumb.php",
"gallery_remote.php",
"highlight_photo.php",
"login.php",
"manage_users.php",
"modify_user.php",
"move_album.php",
"move_photo.php",
"progress_uploading.php",
"rename_album.php",
"resize_photo.php",
"rotate_photo.php",
"save_photos.php",
"search.php",
"slideshow.php",
"slideshow_low.php",
"sort_album.php",
"upgrade_album.php",
"user_preferences.php",
"view_album.php",
"view_comments.php",
"view_photo.php",
"view_photo_properties.php"
);
if (!in_array($include, $safe_to_include)) {
$include = escapeshellcmd($include);
print "Security error! The file you tried to include ";
print "is not on the approved file list. To include ";
print "this file you must edit Gallery's index.php ";
print "and add $include to the \$safe_to_include ";
print "array.";
exit;
}
include(${GALLERY_BASEDIR} . $include);
} else {
include("albums.php");
}
?>