forked from cybrespace/mastodon
		
	Fix #457 - escape JSON in INITIAL_STATE (this bug only ever allowed a user to xss themselves rather than anyone else)
This commit is contained in:
		
							parent
							
								
									7951e7ffd5
								
							
						
					
					
						commit
						4a2ee43e80
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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…
	
	Add table
		
		Reference in a new issue