00001 <?php
00002 # This file is part of the Savane project
00003 # <http://gna.org/projects/savane/>
00004 #
00005 # $Id: vars.php 4567 2005-06-30 17:19:37Z toddy $
00006 #
00007 # Copyright 1999-2000 (c) The SourceForge Crew
00008 # Copyright 2000-2002 (c) Free Software Foundation
00009 #
00010 # Copyright 2003-2004 (c) Mathieu Roy <yeupou--at--gnu.org>
00011 #
00012 # The Savane project is free software; you can redistribute it and/or
00013 # modify it under the terms of the GNU General Public License
00014 # as published by the Free Software Foundation; either version 2
00015 # of the License, or (at your option) any later version.
00016 #
00017 # The Savane project is distributed in the hope that it will be useful,
00018 # but WITHOUT ANY WARRANTY; without even the implied warranty of
00019 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
00020 # GNU General Public License for more details.
00021 #
00022 # You should have received a copy of the GNU General Public License
00023 # along with the Savane project; if not, write to the Free Software
00024 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00025
00026
00027 $LICENSE = array();
00028 $LICENSE_URL = array();
00029 $DEVEL_STATUS = array();
00030
00031 if ($_GET['sys_incdir'] ||
00032 $_POST['sys_incdir'] ||
00033 $_COOKIE['sys_incdir'] ||
00034 $_SERVER['sys_incdir'] ||
00035 $_ENV['sys_incdir'] ||
00036 $_FILES['sys_incdir'] ||
00037 $_REQUEST['sys_incdir'])
00038 { exit(); }
00039
00040 require($GLOBALS['sys_incdir'].'/hashes.txt');
00041
00042 $SHELLS = array();
00043 $SHELLS[1] = '/bin/bash';
00044 $SHELLS[2] = '/bin/sh';
00045 $SHELLS[3] = '/bin/ksh';
00046
00047 ?>