mirror of
https://github.com/0xMarcio/cve.git
synced 2025-05-31 10:40:54 +00:00
1.2 KiB
1.2 KiB
CVE-2024-22414
Description
flaskBlog is a simple blog app built with Flask. Improper storage and rendering of the /user/<user>
page allows a user's comments to execute arbitrary javascript code. The html template user.html
contains the following code snippet to render comments made by a user: <div class="content" tag="content">{{comment[2]|safe}}</div>
. Use of the "safe" tag causes flask to not escape the rendered content. To remediate this, simply remove the |safe
tag from the HTML above. No fix is is available and users are advised to manually edit their installation.