Skip to content
Snippets Groups Projects
Commit d1b98ace authored by Jonas Leder's avatar Jonas Leder
Browse files

fix XSS injection possible in comment

parent 83ab2147
No related branches found
No related tags found
Loading
Pipeline #1638 passed
......@@ -10,15 +10,28 @@ class commentsDisplay extends HTMLElement {
if (xhr.status === 200) {
let comments = JSON.parse(xhr.responseText);
comments.forEach((element) => {
this.innerHTML += `
<h3 class="commentTitle">${element["name"]}</h3>
<div class="comment">
<img src="${element["gravatarURL"]}">
<article class="commentArticle">
<p class="commentText">${element["comment"]}</p>
</article>
</div>
`;
const h3 = document.createElement("h3");
h3.classList.add("commentTitle");
h3.innerText = element["name"];
this.appendChild(h3);
const commentDiv = document.createElement("div");
commentDiv.classList.add("comment");
this.appendChild(commentDiv);
const image = document.createElement("img");
image.src = element["gravatarURL"];
commentDiv.appendChild(image);
const article = document.createElement("article");
article.classList.add("commentArticle");
commentDiv.appendChild(article);
const commentText = document.createElement("p");
commentText.classList.add("commentText");
commentText.innerText = element["comment"];
article.appendChild(commentText);
});
} else {
let p = document.createElement("p");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment