mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-12 18:36:29 +00:00
Empty commit
This commit is contained in:
parent
5194e7be67
commit
ba0b51ef98
@ -1,5 +1,8 @@
|
||||
CHANGE LOG
|
||||
|
||||
2015-11-19 by lawnmower
|
||||
Fix several XSS and SQLi vulerabilities
|
||||
|
||||
2015-11-14 by techietrash
|
||||
Fix ctrl+click group collapsing/expanding on OSX
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?
|
||||
authorize();
|
||||
|
||||
if ((!check_perms('admin_reports') && !check_perms('project_team') && !check_perms('site_moderate_forums')) || (empty($_POST['reportid']) && !is_number($_POST['reportid']))) {
|
||||
if (!check_perms('admin_reports') && !check_perms('project_team') && !check_perms('site_moderate_forums')) {
|
||||
ajax_error();
|
||||
}
|
||||
|
||||
$ReportID = $_POST['reportid'];
|
||||
$ReportID = (int) $_POST['reportid'];
|
||||
|
||||
$DB->query("
|
||||
SELECT Type
|
||||
|
@ -5,11 +5,7 @@
|
||||
error(403);
|
||||
}
|
||||
|
||||
if (empty($_POST['reportid']) && !is_number($_POST['reportid'])) {
|
||||
error(403);
|
||||
}
|
||||
|
||||
$ReportID = $_POST['reportid'];
|
||||
$ReportID = (int) $_POST['reportid'];
|
||||
|
||||
$DB->query("
|
||||
SELECT Type
|
||||
|
@ -50,7 +50,7 @@
|
||||
}
|
||||
|
||||
|
||||
$ExtraID = $_POST['otherid'];
|
||||
$ExtraID = db_string($_POST['otherid']);
|
||||
|
||||
if (!empty($_POST['extra'])) {
|
||||
$Extra = db_string($_POST['extra']);
|
||||
|
@ -7,12 +7,7 @@
|
||||
error(403);
|
||||
}
|
||||
|
||||
if (empty($_POST['reportid']) || !is_number($_POST['reportid'])) {
|
||||
echo 'HAX ATTEMPT!'.$_GET['reportid'];
|
||||
die();
|
||||
}
|
||||
|
||||
$ReportID = $_POST['reportid'];
|
||||
$ReportID = (int) $_POST['reportid'];
|
||||
|
||||
$Message = db_string($_POST['comment']);
|
||||
//Message can be blank!
|
||||
|
@ -5,23 +5,13 @@
|
||||
error(403);
|
||||
}
|
||||
|
||||
if (empty($_GET['reportid']) || !is_number($_GET['reportid'])) {
|
||||
echo 'HAX ATTEMPT!'.$_GET['reportid'];
|
||||
die();
|
||||
}
|
||||
|
||||
if (empty($_GET['categoryid']) || !is_number($_GET['categoryid'])) {
|
||||
echo 'HAX ATTEMPT!!'.$_GET['categoryid'];
|
||||
die();
|
||||
}
|
||||
|
||||
if (empty($_GET['newresolve'])) {
|
||||
echo "No new resolve";
|
||||
die();
|
||||
}
|
||||
|
||||
$ReportID = $_GET['reportid'];
|
||||
$CategoryID = $_GET['categoryid'];
|
||||
$ReportID = (int) $_GET['reportid'];
|
||||
$CategoryID = (int) $_GET['categoryid'];
|
||||
$NewType = $_GET['newresolve'];
|
||||
|
||||
if (!empty($Types[$CategoryID])) {
|
||||
|
@ -6,7 +6,7 @@
|
||||
error(403);
|
||||
}
|
||||
|
||||
$UserID = $_REQUEST['userid'];
|
||||
$UserID = (int) $_REQUEST['userid'];
|
||||
|
||||
switch ($_REQUEST['dupeaction']) {
|
||||
case 'remove':
|
||||
|
Loading…
Reference in New Issue
Block a user