Fix #457 - escape JSON in INITIAL_STATE (this bug only ever allowed a user to xss themselves rather than anyone else)

master
Eugen Rochko 7 years ago
parent 7951e7ffd5
commit 4a2ee43e80
  1. 2
      app/views/home/index.html.haml

@ -1,6 +1,6 @@
- content_for :header_tags do
:javascript
window.INITIAL_STATE = #{render(file: 'home/initial_state', formats: :json)}
window.INITIAL_STATE = #{json_escape(render(file: 'home/initial_state', formats: :json))}
= javascript_include_tag 'application'

Loading…
Cancel
Save