tag inside javascript", "text": "<p>I'm using backbone, and the general way for passing the collections when the page load is</p>\n\n<pre class="prettyprint"><code>window.router = new Routers.ManageRouter({store: #{@store.to_json});\n</code></pre>\n\n<p>which is fine and works well, until someone decides to add the text "<code><script>alert("owned")</script></code>" to one of the store fields. the last <code></script></code> obviously closes the javascript. How can this be circumvented?</p>\n\n<pre class="prettyprint"><code> :javascript\n $(function() {\n window.router = new Dotz.Routers.ManageRouter({store: #{@store.to_json}});\n Backbone.history.start();\n });\n</code></pre>\n\n<p><strong>The above outputs:</strong></p>\n\n<pre class="prettyprint"><code><script>\n //<![CDATA[\n $(function() {\n window.router = new Dotz.Routers.ManageRouter({store: '{"_id":"4f3300e19c2ee41d9a00001c", "points_text":"<script>alert(\\"hey\\");</script>"'});\n Backbone.history.start();\n });\n //]]>\n </script>\n</code></pre>", "answerCount": 1, "upvoteCount": 282, "dateCreated": "2012-02-12 04:12:55", "dateModified": "2022-09-18 17:04:53", "author": { "type": "Person", "name": "CamelCamelCamel" }, "acceptedAnswer": { "@type": "Answer", "text": "<p>Inside a <code><script></code> block it is syntactically illegal to have any <code></</code> followed by a name—not just <code></script></code>—so you need to escape that anywhere it may appear. For example:</p>\n\n<pre class="prettyprint"><code>:javascript\n var foo = { store: #{@store.to_json.gsub('</','<\\/')} };\n</code></pre>\n\n<p>This will create the sequence <code><\\/</code> inside your JS strings, which is interpreted to be the same as <code></</code>. Ensure that you use single quotes in your gsub replacement string, or else use <code>gsub( "</", "<\\\\/" )</code> due to the difference between single and double quotes in Ruby.</p>\n\n<p>Shown in action:</p>\n\n<pre class="prettyprint"><code>irb:02.0> s = "<b>foo</b>" # Here's a dangerous string\n#=> "<b>foo</b>"\n\nirb:03.0> a = [s] # Wrapped in an array, for fun.\n#=> ["<b>foo</b>"]\n\nirb:04.0> json = a.to_json.gsub( '</', '<\\/' ) # Sanitized\nirb:05.0> puts json # This is what would come out in your HTML; safe!\n#=> ["<b>foo<\\/b>"]\n\nirb:06.0> puts JSON.parse(json).first # Same as the original? Yes! Yay!\n#=> <b>foo</b>\n</code></pre>\n\n<p>If you are using Rails (or ActiveSupport) you can enable JSON escaping:</p>\n\n<pre class="prettyprint"><code>ActiveSupport::JSON::Encoding.escape_html_entities_in_json = true\n</code></pre>\n\n<p>Seen in action:</p>\n\n<pre class="prettyprint"><code>irb:02.0> a = ["<b>foo</b>"]\nirb:03.0> puts a.to_json # Without the magic\n#=> ["<b>foo</b>"]\n\nirb:04.0> require 'active_support'\nirb:05.0> ActiveSupport::JSON::Encoding.escape_html_entities_in_json = true\nirb:06.0> puts a.to_json # With the magic\n#=> ["\\u003Cb\\u003Efoo\\u003C/b\\u003E"]\n</code></pre>\n\n<p>It produces JSON that is more verbose than you need to solve this particular problem, but it is effective.</p>", "upvoteCount": 113, "url": "https://exchangetuts.com/escaping-script-tag-inside-javascript-1640376304327184#answer-1651444575181177", "dateCreated": "2022-09-12 17:04:53", "dateModified": "2022-09-18 17:04:53", "author": { "type": "Person", "name": "Phrogz" } } } }