You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
The render_html() method does not sanitize outputs. If a database field contains <script>alert(1)</script>, this will lead to code execution in the user's browser.
The
render_html()
method does not sanitize outputs. If a database field contains<script>alert(1)</script>
, this will lead to code execution in the user's browser.Simple fix, change from this:
...to this:
The text was updated successfully, but these errors were encountered: