mirror of
https://koodu.h-i.works/projects/thebadspace
synced 2025-05-06 14:41:02 -05:00
SQL Exploit Patch
Quick fix to patch up a common SQL exploit.
This commit is contained in:
parent
aa8daaf895
commit
fb2d34a008
@ -34,9 +34,8 @@ class FrontIndexController extends Controller
|
|||||||
$rawSearch = $terms;
|
$rawSearch = $terms;
|
||||||
$terms = str_replace(",", "", $terms);
|
$terms = str_replace(",", "", $terms);
|
||||||
$terms = str_replace(" ", "|", $terms);
|
$terms = str_replace(" ", "|", $terms);
|
||||||
$raw = DB::select("SELECT * FROM searchlocations('$terms')");
|
$raw = DB::select("SELECT * FROM searchlocations(?)", [$terms]);
|
||||||
$results = [];
|
$results = [];
|
||||||
|
|
||||||
foreach ($raw as $item) {
|
foreach ($raw as $item) {
|
||||||
if ($item->block_count > 2) {
|
if ($item->block_count > 2) {
|
||||||
array_push($results, $item);
|
array_push($results, $item);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user