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
{{ message }}
This repository has been archived by the owner on Jan 30, 2019. It is now read-only.
There are a bunch of control characters which users routinely enter such as "\v", "\f", "\u0003" and even "\b" which json_builder fails to escape resulting in an invalid output that both JSON.parse and browsers' JSON library choke on.
There are a bunch of control characters which users routinely enter such as
"\v"
,"\f"
,"\u0003"
and even"\b"
whichjson_builder
fails to escape resulting in an invalid output that bothJSON.parse
and browsers' JSON library choke on.Right now our only workaround is to sanitize user input.
The text was updated successfully, but these errors were encountered: