aboutsummaryrefslogtreecommitdiff
path: root/quotes/index.js
diff options
context:
space:
mode:
authorMarvin Borner2020-10-10 11:37:35 +0200
committerMarvin Borner2020-10-10 11:37:35 +0200
commitad2d5dd284dc733a5fbd2a9f60c30fa1b7a0da73 (patch)
tree2679845c62b523611578c021ab267268737ea923 /quotes/index.js
parent54837fbd3614f97c06675ca416859dcbe96e1190 (diff)
Fixed HTML injection and middlename spaces
Diffstat (limited to 'quotes/index.js')
-rw-r--r--quotes/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/quotes/index.js b/quotes/index.js
index 5aa0646..0e0717b 100644
--- a/quotes/index.js
+++ b/quotes/index.js
@@ -11,7 +11,7 @@ app.post("/api/add", checkUser, async (req, res) => {
await db.query("INSERT INTO quotes (user_id, author_id, quote) VALUE (?,?,?)", [
req.session.uid,
parseInt(req.body.author),
- req.body.quote,
+ req.body.quote.replace(/</g, "&lt;").replace(/>/g, "&gt;"),
]);
res.redirect("/quotes");
} catch (e) {