You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's a good practice to convert the following special characters: <>"&' into their respective hex representation: \u003C, \u003E, \u0022, \u0026 and \u0027: it mitigates some XSS while remaining valid JSON.
Symfony2's JsonResponse does this escaping, don't see why JMSSerializer shouldn't.
Sorry if dup bug.
The text was updated successfully, but these errors were encountered:
It's a good practice to convert the following special characters:
<
>
"
&
'
into their respective hex representation:\u003C
,\u003E
,\u0022
,\u0026
and\u0027
: it mitigates some XSS while remaining valid JSON.Symfony2's
JsonResponse
does this escaping, don't see why JMSSerializer shouldn't.Sorry if dup bug.
The text was updated successfully, but these errors were encountered: