add a "reflected XSS" vulnerability #3
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.
This commit adds a URL parameter, 'name', that is used in a welcome message if it exists. The name is unsanitized and so can include JS and thus cause an XSS that runs on the client side but does not exist on the server side (i.e., a "reflected XSS").
The behavior of the system is unchanged if you go to the bare URL, e.g., http://127.0.0.1:5000/ -- however, if you add a 'name' parameter to the URL, e.g., http://127.0.0.1:5000?name=Peter it will display a welcome message between "XSS Demo" and "Read, Search, and Post Comments".
The name parameter can contain JS, e.g.:
http://127.0.0.1:5000?name=Peter<script>alert("boo")</script>
... and this JS will run in the page.
Sanitization should be the same in either case, i.e., setting autoescape to true in the template.