SQL Exploit Patch

Quick fix to patch up a common SQL exploit.
This commit is contained in:
Ro 2023-09-21 13:46:14 -07:00
parent 572f7c5027
commit 1c904e5e51
No known key found for this signature in database
GPG key ID: 29B551CDBD4D3B50

View file

@ -34,9 +34,8 @@ class FrontIndexController extends Controller
$rawSearch = $terms;
$terms = str_replace(",", "", $terms);
$terms = str_replace(" ", "|", $terms);
$raw = DB::select("SELECT * FROM searchlocations('$terms')");
$raw = DB::select("SELECT * FROM searchlocations(?)", [$terms]);
$results = [];
foreach ($raw as $item) {
if ($item->block_count > 2) {
array_push($results, $item);