Fix DOM-XSS in theme dropdowns via innerHTML concat#188
Open
stultus wants to merge 1 commit into
Open
Conversation
Theme names from the database were concatenated into an HTML string
and assigned to innerHTML, so a theme name containing quotes or a
<script> tag could break out of the value attribute and execute as
DOM-based XSS.
Replace the string-concat pattern with DOM-API construction
(document.createElement('option') + option.value = theme) in all four
templates that render the theme datalist: index.html, suggest.html,
write_and_index.html, web_commentary.html. Setting .value directly
leaves the browser to handle attribute escaping and never goes through
an HTML parser.
Add tests/test_theme_xss.py as a regression guard: it greps each of
the four templates for the vulnerable patterns (+ '<option', and
.innerHTML = str) and for the corrected createElement('option') call.
Any future re-introduction of the unsafe pattern will fail CI.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
innerHTML, enabling DOM-based XSS via a malicious theme namedocument.createElement('option')+option.value = theme) in all four affected templates:index.html,suggest.html,write_and_index.html,web_commentary.htmlcreateElementcallCloses #163