We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using HAML and Twig to render our templates, we have run into an issue that allows XSS.
- set name = '"><script>alert(1);</script>' %input(value=name)
The compiled template is:
{% set name = '"><script>alert(1);</script>' %} <input {{ mthaml_attributes([['value', name]], 'html5', 'UTF-8', false)|raw }}>
We are using the Symfony bundle, which disables escaping by default.
Is there anything we need to do to prevent this?
The text was updated successfully, but these errors were encountered:
I see no reason for not escaping attributes. I've fixed that and tagged 1.8.1.
1.8.1
Thank you for reporting this issue.
Sorry, something went wrong.
No branches or pull requests
When using HAML and Twig to render our templates, we have run into an issue that allows XSS.
The compiled template is:
We are using the Symfony bundle, which disables escaping by default.
Is there anything we need to do to prevent this?
The text was updated successfully, but these errors were encountered: