Skip to content

Commit 3bf53c9

Browse files
committed
security: prevent XSS when previewing images
1 parent 6b08141 commit 3bf53c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/js/script.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ function preview(items) {
597597
}
598598

599599
carouselItem.find('.carousel-label').attr('target', '_blank').attr('href', item.url)
600-
.append(item.name)
600+
.text(item.name)
601601
.append($('<i class="fas fa-external-link-alt ml-2"></i>'));
602602

603603
carousel.children('.carousel-inner').append(carouselItem);

0 commit comments

Comments
 (0)