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:
commit
281a7c3ff4
3 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 = [
|
||||
|
|
|
@ -20,4 +20,4 @@ function getSkills() {
|
|||
array_push($response, $skill["Key"]);
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue