|
Server IP : 10.128.40.6 / Your IP : 216.73.216.23 Web Server : Apache System : Linux webd006.cluster128.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : logmcpe ( 111175) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/logmcpe/www/MC/temp/10258/../9904/../1925/../../../AB/js/../css/../css/../../MC/forum/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
// -------------------------------------------------------------------------//
// Nuked-KlaN - PHP Portal //
// http://www.nuked-klan.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. //
// -------------------------------------------------------------------------//
include("nuked.php");
include ("Includes/constants.php");
global $nuked, $language, $theme, $bgcolor1, $bgcolor2, $bgcolor3;
if (ereg("\.\.", $theme) || ereg("\.\.", $language) || ereg("[A-Za-z]", $_GET['ip_ban']))
{
die("<br /><br /><br /><div style=\"text-align: center;\"><big>What are you trying to do ?</big></div>");
}
$theme = trim($theme);
$language = trim($language);
include ("themes/" . $theme . "/colors.php");
translate("lang/" . $language . ".lang.php");
$ip_ban = $_GET['ip_ban'];
$sql = mysql_query("SELECT texte FROM " . BANNED_TABLE . " WHERE ip = '" . $ip_ban . "'");
$count = mysql_num_rows($sql);
if ($count > 0)
{
list($texte_ban) = mysql_fetch_array($sql);
$texte_ban = stripslashes($texte_ban);
$texte_ban = htmlentities($texte_ban);
$texte_ban = BBcode($texte_ban);
setcookie("ip_ban", "$ip_ban", time() + 9999999, "", "", "");
echo "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">\n"
. "<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"fr\">\n"
. "<head><title>" . $nuked['name'] . " :: " . $nuked['slogan'] . " ::</title>\n"
. "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\" />\n"
. "<meta http-equiv=\"content-style-type\" content=\"text/css\" />\n"
. "<link title=\"style\" type=\"text/css\" rel=\"stylesheet\" href=\"themes/" . $theme . "/style.css\" /></head>\n"
. "<body style=\"background : " . $bgcolor2 . ";\"><div><br /><br /><br /><br /><br /><br /><br /><br /></div>\n"
. "<table style=\"margin-left: auto;margin-right: auto;text-align: left;background: " . $bgcolor3 . ";\" cellspacing=\"0\" cellpadding=\"20\">\n"
. "<tr><td style=\"background: " . $bgcolor1 . ";\" align=\"center\"><big><b>" . $nuked['name'] . " - " . $nuked['slogan'] . "</b><br /><br />\n"
. _IPBANNED . "</big>\n";
if ($texte_ban != "")
{
echo "<br /><table width=\"100%\"><tr><td align=\"left\"><hr style=\"color: " . $bgcolor3 . ";height: 1px;\" />\n"
. "<big><b>" . _REASON . "</b><br>" . $texte_ban . "</big></td></tr></table>\n";
}
echo "</td></tr></table><div style=\"text-align: center;\"><br />" . _CONTACTWEBMASTER . " : <a href=\"mailto:" . $nuked['mail'] . "\">" . $nuked['mail'] . "</a></div></body></html>";
}
?>
