Merge branch 'jonasled-master-patch-15565' into 'master'

fix two times sql injection possible

See merge request jonasled/website!10
This commit is contained in:
Jonas Leder 2022-03-16 10:18:52 +01:00
commit 2d063cf0f1
3 changed files with 4 additions and 2 deletions

View file

@ -39,6 +39,7 @@ function blogPost($id, $conn)
function blogPosts($count, $contentLength, $conn)
{
$response = [];
$count = $conn->real_escape_string($count);
$result = $conn->query("SELECT * FROM posts order by id desc limit $count");
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
@ -62,4 +63,4 @@ function blogPosts($count, $contentLength, $conn)
}
return $response;
}
}

View file

@ -18,6 +18,7 @@ $commentField = new ObjectType([
function comments($article, $conn)
{
$response = [];
$article = $conn->real_escape_string($article);
$result = $conn->query("SELECT * FROM comments WHERE article='$article'");
while ($row = $result->fetch_assoc()) {
$commentElement = [

View file

@ -20,4 +20,4 @@ function getSkills() {
array_push($response, $skill["Key"]);
}
return $response;
}
}