mirror of
https://github.com/Mibew/tray.git
synced 2025-01-22 18:10:34 +03:00
format the code; remove comments in the client code; move csrfchecktoken() right after check_login()
This commit is contained in:
parent
2d04bbe4ee
commit
dd6632ffdf
@ -349,7 +349,7 @@ function connect()
|
|||||||
die('Mysql extension is not loaded');
|
die('Mysql extension is not loaded');
|
||||||
}
|
}
|
||||||
$link = @mysql_connect($mysqlhost, $mysqllogin, $mysqlpass)
|
$link = @mysql_connect($mysqlhost, $mysqllogin, $mysqlpass)
|
||||||
or die('Could not connect: ' . mysql_error());
|
or die('Could not connect: ' . mysql_error());
|
||||||
mysql_select_db($mysqldb, $link) or die('Could not select database');
|
mysql_select_db($mysqldb, $link) or die('Could not select database');
|
||||||
if ($force_charset_in_connection) {
|
if ($force_charset_in_connection) {
|
||||||
mysql_query("SET NAMES '$dbencoding'", $link);
|
mysql_query("SET NAMES '$dbencoding'", $link);
|
||||||
@ -392,7 +392,7 @@ function db_build_select($fields, $table, $conditions, $orderandgroup)
|
|||||||
function db_rows_count($table, $conditions, $countfields, $link)
|
function db_rows_count($table, $conditions, $countfields, $link)
|
||||||
{
|
{
|
||||||
$result = mysql_query(db_build_select("count(" . ($countfields ? $countfields : "*") . ")", $table, $conditions, ""), $link)
|
$result = mysql_query(db_build_select("count(" . ($countfields ? $countfields : "*") . ")", $table, $conditions, ""), $link)
|
||||||
or die(' Count query failed: ' . mysql_error($link));
|
or die(' Count query failed: ' . mysql_error($link));
|
||||||
$line = mysql_fetch_array($result, MYSQL_NUM);
|
$line = mysql_fetch_array($result, MYSQL_NUM);
|
||||||
mysql_free_result($result);
|
mysql_free_result($result);
|
||||||
return $line[0];
|
return $line[0];
|
||||||
@ -454,7 +454,7 @@ function no_field($key)
|
|||||||
function failed_uploading_file($filename, $key)
|
function failed_uploading_file($filename, $key)
|
||||||
{
|
{
|
||||||
return getlocal2("errors.failed.uploading.file",
|
return getlocal2("errors.failed.uploading.file",
|
||||||
array($filename, getlocal($key)));
|
array($filename, getlocal($key)));
|
||||||
}
|
}
|
||||||
|
|
||||||
function wrong_field($key)
|
function wrong_field($key)
|
||||||
@ -689,43 +689,47 @@ function jspath()
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* authorization token check for CSRF attack */
|
/* authorization token check for CSRF attack */
|
||||||
function csrfchecktoken(){
|
function csrfchecktoken()
|
||||||
setcsrftoken();
|
{
|
||||||
|
setcsrftoken();
|
||||||
|
|
||||||
// check the turing code for post requests and del requests
|
// check the turing code for post requests and del requests
|
||||||
if ($_SERVER['REQUEST_METHOD'] == 'POST'){
|
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
//if token match
|
//if token match
|
||||||
if(!isset($_POST['csrf_token']) || ($_POST['csrf_token'] != $_SESSION['csrf_token'])){
|
if (!isset($_POST['csrf_token']) || ($_POST['csrf_token'] != $_SESSION['csrf_token'])) {
|
||||||
|
|
||||||
die("CSRF failure");
|
die("CSRF failure");
|
||||||
}
|
}
|
||||||
} else if(isset($_GET['act'])){
|
} else if (isset($_GET['act'])) {
|
||||||
if(($_GET['act'] == 'del' || $_GET['act'] == 'delete') && $_GET['csrf_token'] != $_SESSION['csrf_token']){
|
if (($_GET['act'] == 'del' || $_GET['act'] == 'delete') && $_GET['csrf_token'] != $_SESSION['csrf_token']) {
|
||||||
|
|
||||||
die("CSRF failure");
|
die("CSRF failure");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* print csrf token as a hidden field*/
|
/* print csrf token as a hidden field*/
|
||||||
function print_csrf_token_input(){
|
function print_csrf_token_input()
|
||||||
setcsrftoken();
|
{
|
||||||
|
setcsrftoken();
|
||||||
|
|
||||||
echo "<input name='csrf_token' type='hidden' value='".$_SESSION['csrf_token']."' />";
|
echo "<input name='csrf_token' type='hidden' value='" . $_SESSION['csrf_token'] . "' />";
|
||||||
}
|
}
|
||||||
|
|
||||||
/* print csrf token in url format */
|
/* print csrf token in url format */
|
||||||
function print_csrf_token_in_url(){
|
function print_csrf_token_in_url()
|
||||||
setcsrftoken();
|
{
|
||||||
|
setcsrftoken();
|
||||||
|
|
||||||
echo "&csrf_token=".$_SESSION['csrf_token'];
|
echo "&csrf_token=" . $_SESSION['csrf_token'];
|
||||||
}
|
}
|
||||||
|
|
||||||
/* set csrf token */
|
/* set csrf token */
|
||||||
function setcsrftoken(){
|
function setcsrftoken()
|
||||||
if(!isset($_SESSION['csrf_token'])){
|
{
|
||||||
$_SESSION['csrf_token']=sha1(rand(10000000,99999999));
|
if (!isset($_SESSION['csrf_token'])) {
|
||||||
}
|
$_SESSION['csrf_token'] = sha1(rand(10000000, 99999999));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
@ -23,9 +23,8 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/operator_settings.php');
|
require_once('../libs/operator_settings.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
$opId = verifyparam("op", "/^\d{1,9}$/");
|
$opId = verifyparam("op", "/^\d{1,9}$/");
|
||||||
$page = array('opid' => $opId, 'avatar' => '');
|
$page = array('opid' => $opId, 'avatar' => '');
|
||||||
|
@ -25,9 +25,8 @@ require_once('../libs/settings.php');
|
|||||||
require_once('../libs/groups.php');
|
require_once('../libs/groups.php');
|
||||||
require_once('../libs/pagination.php');
|
require_once('../libs/pagination.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
loadsettings();
|
loadsettings();
|
||||||
|
|
||||||
$errors = array();
|
$errors = array();
|
||||||
|
@ -23,8 +23,6 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/pagination.php');
|
require_once('../libs/pagination.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
function load_message($key)
|
function load_message($key)
|
||||||
{
|
{
|
||||||
global $mysqlprefix;
|
global $mysqlprefix;
|
||||||
@ -54,6 +52,7 @@ function add_message($locale, $groupid, $message)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
loadsettings();
|
loadsettings();
|
||||||
|
|
||||||
$stringid = verifyparam("key", "/^\d{0,9}$/", "");
|
$stringid = verifyparam("key", "/^\d{0,9}$/", "");
|
||||||
|
@ -23,9 +23,8 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/settings.php');
|
require_once('../libs/settings.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
$page = array('agentId' => '');
|
$page = array('agentId' => '');
|
||||||
$errors = array();
|
$errors = array();
|
||||||
|
@ -23,9 +23,8 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/operator_settings.php');
|
require_once('../libs/operator_settings.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
$page = array('opid' => '');
|
$page = array('opid' => '');
|
||||||
$errors = array();
|
$errors = array();
|
||||||
|
@ -22,9 +22,8 @@
|
|||||||
require_once('../libs/common.php');
|
require_once('../libs/common.php');
|
||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
if (isset($_GET['act']) && $_GET['act'] == 'del') {
|
if (isset($_GET['act']) && $_GET['act'] == 'del') {
|
||||||
$operatorid = isset($_GET['id']) ? $_GET['id'] : "";
|
$operatorid = isset($_GET['id']) ? $_GET['id'] : "";
|
||||||
|
@ -23,9 +23,8 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/settings.php');
|
require_once('../libs/settings.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
$page = array('agentId' => '');
|
$page = array('agentId' => '');
|
||||||
$errors = array();
|
$errors = array();
|
||||||
|
@ -23,8 +23,8 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/operator_settings.php');
|
require_once('../libs/operator_settings.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
function update_operator_permissions($operatorid, $newvalue)
|
function update_operator_permissions($operatorid, $newvalue)
|
||||||
{
|
{
|
||||||
|
@ -23,9 +23,8 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/settings.php');
|
require_once('../libs/settings.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
$page = array('agentId' => '');
|
$page = array('agentId' => '');
|
||||||
$errors = array();
|
$errors = array();
|
||||||
|
@ -23,8 +23,6 @@ require_once('../libs/common.php');
|
|||||||
require_once('../libs/operator.php');
|
require_once('../libs/operator.php');
|
||||||
require_once('../libs/pagination.php');
|
require_once('../libs/pagination.php');
|
||||||
|
|
||||||
csrfchecktoken();
|
|
||||||
|
|
||||||
function compare_localization_by_l1($a, $b)
|
function compare_localization_by_l1($a, $b)
|
||||||
{
|
{
|
||||||
if ($a == $b) {
|
if ($a == $b) {
|
||||||
@ -121,6 +119,7 @@ function get_auxiliary($s)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$operator = check_login();
|
$operator = check_login();
|
||||||
|
csrfchecktoken();
|
||||||
|
|
||||||
$source = verifyparam("source", "/^[\w-]{2,5}$/", $default_locale);
|
$source = verifyparam("source", "/^[\w-]{2,5}$/", $default_locale);
|
||||||
$target = verifyparam("target", "/^[\w-]{2,5}$/", $current_locale);
|
$target = verifyparam("target", "/^[\w-]{2,5}$/", $current_locale);
|
||||||
|
@ -50,10 +50,7 @@ require_once('inc_errors.php');
|
|||||||
|
|
||||||
<?php if( $page['opid'] || $page['canmodify'] ) { ?>
|
<?php if( $page['opid'] || $page['canmodify'] ) { ?>
|
||||||
<form name="agentForm" method="post" action="<?php echo $webimroot ?>/operator/operator.php">
|
<form name="agentForm" method="post" action="<?php echo $webimroot ?>/operator/operator.php">
|
||||||
|
|
||||||
<!-- add auth token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<input type="hidden" name="opid" value="<?php echo $page['opid'] ?>"/>
|
<input type="hidden" name="opid" value="<?php echo $page['opid'] ?>"/>
|
||||||
<div>
|
<div>
|
||||||
<?php if(!$page['needChangePassword']) { print_tabbar(); } ?>
|
<?php if(!$page['needChangePassword']) { print_tabbar(); } ?>
|
||||||
|
@ -36,10 +36,7 @@ require_once('inc_errors.php');
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<form name="avatarForm" method="post" action="<?php echo $webimroot ?>/operator/avatar.php" enctype="multipart/form-data">
|
<form name="avatarForm" method="post" action="<?php echo $webimroot ?>/operator/avatar.php" enctype="multipart/form-data">
|
||||||
|
|
||||||
<!-- add csrf token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<input type="hidden" name="op" value="<?php echo $page['opid'] ?>"/>
|
<input type="hidden" name="op" value="<?php echo $page['opid'] ?>"/>
|
||||||
<div>
|
<div>
|
||||||
<?php print_tabbar(); ?>
|
<?php print_tabbar(); ?>
|
||||||
|
@ -44,10 +44,7 @@ require_once('inc_errors.php');
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<form name="cannedForm" method="post" action="<?php echo $webimroot ?>/operator/cannededit.php">
|
<form name="cannedForm" method="post" action="<?php echo $webimroot ?>/operator/cannededit.php">
|
||||||
|
|
||||||
<!-- add auth token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<input type="hidden" name="key" value="<?php echo $page['key'] ?>"/>
|
<input type="hidden" name="key" value="<?php echo $page['key'] ?>"/>
|
||||||
<?php if(!$page['key']) { ?>
|
<?php if(!$page['key']) { ?>
|
||||||
<input type="hidden" name="lang" value="<?php echo $page['locale'] ?>"/>
|
<input type="hidden" name="lang" value="<?php echo $page['locale'] ?>"/>
|
||||||
|
@ -73,10 +73,7 @@ require_once('inc_errors.php');
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<form name="features" method="post" action="<?php echo $webimroot ?>/operator/features.php">
|
<form name="features" method="post" action="<?php echo $webimroot ?>/operator/features.php">
|
||||||
|
|
||||||
<!-- add auth token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<input type="hidden" name="sent" value="true"/>
|
<input type="hidden" name="sent" value="true"/>
|
||||||
<div>
|
<div>
|
||||||
<?php print_tabbar(); ?>
|
<?php print_tabbar(); ?>
|
||||||
|
@ -39,10 +39,7 @@ require_once('inc_errors.php');
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<form name="performance" method="post" action="<?php echo $webimroot ?>/operator/performance.php">
|
<form name="performance" method="post" action="<?php echo $webimroot ?>/operator/performance.php">
|
||||||
|
|
||||||
<!-- add auth token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<?php print_tabbar(); ?>
|
<?php print_tabbar(); ?>
|
||||||
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
||||||
|
@ -39,10 +39,7 @@ require_once('inc_errors.php');
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<form name="permissionsForm" method="post" action="<?php echo $webimroot ?>/operator/permissions.php">
|
<form name="permissionsForm" method="post" action="<?php echo $webimroot ?>/operator/permissions.php">
|
||||||
|
|
||||||
<!-- add csrf token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<input type="hidden" name="op" value="<?php echo $page['opid'] ?>"/>
|
<input type="hidden" name="op" value="<?php echo $page['opid'] ?>"/>
|
||||||
<div>
|
<div>
|
||||||
<?php print_tabbar(); ?>
|
<?php print_tabbar(); ?>
|
||||||
|
@ -39,10 +39,7 @@ require_once('inc_errors.php');
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<form name="settings" method="post" action="<?php echo $webimroot ?>/operator/settings.php">
|
<form name="settings" method="post" action="<?php echo $webimroot ?>/operator/settings.php">
|
||||||
|
|
||||||
<!-- add auth token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<?php print_tabbar(); ?>
|
<?php print_tabbar(); ?>
|
||||||
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
||||||
|
@ -44,10 +44,7 @@ require_once('inc_errors.php');
|
|||||||
?>
|
?>
|
||||||
|
|
||||||
<form name="translateForm" method="post" action="<?php echo $webimroot ?>/operator/translate.php">
|
<form name="translateForm" method="post" action="<?php echo $webimroot ?>/operator/translate.php">
|
||||||
|
|
||||||
<!-- add auth token -->
|
|
||||||
<?php print_csrf_token_input() ?>
|
<?php print_csrf_token_input() ?>
|
||||||
|
|
||||||
<input type="hidden" name="key" value="<?php echo $page['key'] ?>"/>
|
<input type="hidden" name="key" value="<?php echo $page['key'] ?>"/>
|
||||||
<input type="hidden" name="target" value="<?php echo $page['target'] ?>"/>
|
<input type="hidden" name="target" value="<?php echo $page['target'] ?>"/>
|
||||||
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
||||||
|
Loading…
Reference in New Issue
Block a user