No changes
This commit is contained in:
parent
8680a02b13
commit
b6b398f5bf
17374 changed files with 2475441 additions and 0 deletions
114
ControlPanel/modules/teamspeak3/header.php
Normal file
114
ControlPanel/modules/teamspeak3/header.php
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
<?php
|
||||
/*
|
||||
*Copyright (C) 2012-2013 Psychokiller
|
||||
*
|
||||
*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 3 of the License, or 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, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
if(!defined("SECURECHECK")) {die("Error: The file can not be executed alone");}
|
||||
session_start();
|
||||
|
||||
if(isset($_POST['skey']) OR isset($_SESSION['server_ip']) AND isset($_SESSION['server_tport']))
|
||||
{
|
||||
if(!isset($_SESSION['server_ip']) AND !isset($_SESSION['server_tport']) OR isset($_POST['skey']))
|
||||
{
|
||||
$_SESSION['skey']=$_POST['skey'];
|
||||
$_SESSION['server_ip']=$server[$_POST['skey']]['ip'];
|
||||
$_SESSION['server_tport']=$server[$_POST['skey']]['tport'];
|
||||
}
|
||||
|
||||
$ts3=new ts3admin($_SESSION['server_ip'], $_SESSION['server_tport']);
|
||||
if($ts3->getElement('success', $ts3->connect())===true)
|
||||
{
|
||||
$serverstatus=true;
|
||||
}
|
||||
else
|
||||
{
|
||||
$serverstatus=false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
$uip=$_SERVER['REMOTE_ADDR'];
|
||||
if(isset($_POST['loginUser'])) {$lg_user=$_POST['loginUser'];}
|
||||
if(isset($_POST['loginPw'])) {$lg_pw=$_POST['loginPw'];}
|
||||
|
||||
$loginstatus=false;
|
||||
$hoststatus=false;
|
||||
|
||||
if(!empty($lg_user) AND !empty($lg_pw))
|
||||
{
|
||||
if($ts3->getElement('success', $ts3->login($lg_user, $lg_pw))===true)
|
||||
{
|
||||
$loginstatus=true;
|
||||
$_SESSION['logged']=true;
|
||||
$_SESSION['userip']=$uip;
|
||||
$_SESSION['loginuser']=$lg_user;
|
||||
$_SESSION['loginpw']=base64_encode(serialize($lg_pw));
|
||||
$whoami=$ts3->getElement('data', $ts3->whoAmI());
|
||||
check_version_consistency($neededversionkey);
|
||||
if($whoami['client_origin_server_id']!=0)
|
||||
{
|
||||
$_SESSION['loginsid']=$whoami['client_origin_server_id'];
|
||||
}
|
||||
else
|
||||
{
|
||||
$hoststatus=true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if(isset($_SESSION['logged']) AND $_SESSION['logged']===true AND $_SESSION['userip']==$uip AND $serverstatus===true)
|
||||
{
|
||||
if($ts3->getElement('success', $ts3->login($_SESSION['loginuser'], unserialize(base64_decode($_SESSION['loginpw']))))===false)
|
||||
{
|
||||
$loginstatus=false;
|
||||
$hoststatus=false;
|
||||
$ts3->logout();
|
||||
session_destroy();
|
||||
}
|
||||
else
|
||||
{
|
||||
$loginstatus=true;
|
||||
$whoami=$ts3->getElement('data', $ts3->whoAmI());
|
||||
check_version_consistency($neededversionkey);
|
||||
if($whoami['client_origin_server_id']==0)
|
||||
{
|
||||
$hoststatus=true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if(isset($_SESSION['logged']) AND $_SESSION['logged']===true AND $_SESSION['userip']!=$uip)
|
||||
{
|
||||
$loginstatus=false;
|
||||
$hoststatus=false;
|
||||
$ts3->logout();
|
||||
session_destroy();
|
||||
}
|
||||
|
||||
if($site=='logout' AND $loginstatus===true)
|
||||
{
|
||||
$hoststatus=false;
|
||||
$loginstatus=false;
|
||||
$ts3->logout();
|
||||
session_destroy();
|
||||
}
|
||||
|
||||
require_once('site/footer.php');
|
||||
|
||||
$footer=implode("", file('templates/'.$style.DS.'index.tpl'));
|
||||
|
||||
if(md5($footer2.$footer3)!='a0f303c0a8846f61ac442b14cb3711f2' OR strpos($footer, '{$footer}')===false)
|
||||
{
|
||||
die();
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue