2000-12-18 21:09:56 +01:00
|
|
|
<?php
|
|
|
|
/**************************************************************************\
|
|
|
|
* phpGroupWare *
|
|
|
|
* http://www.phpgroupware.org *
|
|
|
|
* This file written by Dan Kuykendall <seek3r@phpgroupware.org> *
|
|
|
|
* -------------------------------------------- *
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2000-12-21 10:16:30 +01:00
|
|
|
$d1 = strtolower(substr($phpgw_info["server"]["api_inc"],0,3));
|
2000-12-18 21:09:56 +01:00
|
|
|
$d2 = strtolower(substr($phpgw_info["server"]["server_root"],0,3));
|
2000-12-23 10:43:04 +01:00
|
|
|
$d3 = strtolower(substr($phpgw_info["server"]["app_inc"],0,3));
|
|
|
|
if($d1 == "htt" || $d1 == "ftp" || $d2 == "htt" || $d2 == "ftp" || $d3 == "htt" || $d3 == "ftp") {
|
2000-12-18 21:09:56 +01:00
|
|
|
echo "Failed attempt to break in via an old Security Hole!<br>\n";
|
|
|
|
exit;
|
2000-12-23 10:43:04 +01:00
|
|
|
} unset($d1);unset($d2);unset($d3);
|
2001-01-11 11:22:21 +01:00
|
|
|
/****************************************************************************\
|
2001-01-11 20:41:38 +01:00
|
|
|
* This file is retired, but I left ut here for backward compatibility. Seek3r*
|
2001-01-11 11:22:21 +01:00
|
|
|
\****************************************************************************/
|
2001-01-11 20:41:38 +01:00
|
|
|
include($phpgw_info["server"]["api_inc"] . "/functions.inc.php");
|
|
|
|
?>
|