1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
|
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2006 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., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
*
* $Id: index.php 13338 2006-03-27 15:32:14Z jenst $
*/
?>
<?php
// Hack prevention.
global $GALLERY_EMBEDDED_INSIDE;
global $GALLERY_EMBEDDED_INSIDE_TYPE;
global $GALLERY_MODULENAME;
global $MOS_GALLERY_PARAMS;
// Mambo / Joomla calls index.php directly for popups - we need to make
// sure that the option var has been extracted into the environment
// otherwise it just won't work.
$option = isset($_REQUEST['option']) ? $_REQUEST['option'] : null;
$op = isset($_REQUEST['op']) ? $_REQUEST['op'] : null;
$mop = isset($_REQUEST['mop']) ? $_REQUEST['mop'] : null;
$name = isset($_REQUEST['name']) ? $_REQUEST['name'] : null;
$include = isset($_REQUEST['include']) ? $_REQUEST['include'] : null;
$postnuke = defined('_PN_VERSION_ID') ? true : false;
$phpnuke = isset($GLOBALS['nukeurl']) ? true : false;
/*
* Detect PHP-Nuke, Postnuke, phpBB2 or Mambo and react accordingly.
* Gallery can run embedded in GeekLog too, but to catch this we need
* config.php * Therefore we have to detect GeeLog in init.php.
*/
if ($postnuke ||
$phpnuke ||
!strcmp($op, "modload") ||
!strcmp($mop, "modload") ||
isset($option) ||
isset($name)) {
/*
* Change this variable if your Gallery module has a different
* name in the Nuke or phpBB2 modules directory.
*/
if (isset($name)) {
$GALLERY_MODULENAME = $name;
define ('GALLERY_URL',"modules/$GALLERY_MODULENAME");
}
if (isset($option)) {
$GALLERY_MODULENAME = $option;
$mamboDir = getcwd();
$GALLERY_EMBEDDED_INSIDE = 'mambo';
$GALLERY_EMBEDDED_INSIDE_TYPE = 'mambo';
if (isset($GLOBALS['_VERSION']->PRODUCT) &&
$GLOBALS['_VERSION']->PRODUCT == 'Joomla!') {
$GALLERY_EMBEDDED_INSIDE = 'joomla';
$GALLERY_EMBEDDED_INSIDE_TYPE = 'joomla';
}
}
elseif (isset($GLOBALS['phpbb_root_path'])) {
$GALLERY_EMBEDDED_INSIDE='phpBB2';
$GALLERY_EMBEDDED_INSIDE_TYPE = 'phpBB2';
}
elseif ($postnuke) {
$GALLERY_EMBEDDED_INSIDE='nuke';
$GALLERY_EMBEDDED_INSIDE_TYPE = 'postnuke';
}
elseif ($GLOBALS['user_prefix'] == "nukea") {
$GALLERY_EMBEDDED_INSIDE='nuke';
$GALLERY_EMBEDDED_INSIDE_TYPE = 'nsnnuke';
}
elseif (defined('CPG_NUKE')) {
$GALLERY_EMBEDDED_INSIDE='nuke';
$GALLERY_EMBEDDED_INSIDE_TYPE='cpgnuke';
}
else {
$GALLERY_EMBEDDED_INSIDE='nuke';
$GALLERY_EMBEDDED_INSIDE_TYPE = 'phpnuke';
}
if (empty($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",
"add_photos_frame.php",
"admin-page.php",
"administer_startpage.php",
"album_permissions.php",
"albums.php",
"block-random.php",
"captionator.php",
"copy_photo.php",
"create_user.php",
"delete_album.php",
"delete_photo.php",
"delete_user.php",
"do_command.php",
"download.php",
"ecard_form.php",
"edit_appearance.php",
"edit_caption.php",
"edit_field.php",
"edit_thumb.php",
"edit_watermark.php",
"extra_fields.php",
"gallery_remote.php",
"gallery_remote2.php",
"help/imagemap.php",
"help/metadataOnUpload.php",
"highlight_photo.php",
"imagemap.php",
"lib/colorpicker.php",
"login.php",
"manage_users.php",
"modify_user.php",
"move_album.php",
"move_photo.php",
"multi_create_user.php",
"photo_owner.php",
"poll_properties.php",
"poll_results.php",
"progress_uploading.php",
"publish_xp.php",
"publish_xp_docs.php",
"rearrange.php",
"register.php",
"rename_album.php",
"reset_votes.php",
"resize_photo.php",
"rotate_photo.php",
"rss.php",
"save_photos.php",
"search.php",
"slideshow.php",
"slideshow_high.php",
"slideshow_low.php",
"sort_album.php",
"stats-wizard.php",
"stamp_preview.php",
"stats.php",
"tools/find_orphans.php",
"tools/despam-comments.php",
"tools/validate_albums.php",
"upgrade_album.php",
"upgrade_users.php",
"user_preferences.php",
"view_album.php",
"view_comments.php",
"view_photo.php",
"view_photo_properties.php",
"watermark_album.php",
);
if (!in_array($include, $safe_to_include)) {
$include = htmlentities($include);
print sprintf(_("Security error! The file you tried to include is not on the <b>approved file list</b>. To include this file you must edit %s's index.php and add <b>%s</b> to the <i>\$safe_to_include</i> array"),
'Gallery', $include);
exit;
}
include(dirname(__FILE__) . "/$include");
} else {
include("albums.php");
}
?>
|