Code Monkey home page Code Monkey logo

Comments (2)

roippi avatar roippi commented on June 7, 2024

Hi, thanks for the feedback. After thinking about this for a sec, you are likely correct, since the json-encoded data is put into an HTML comment block, which could be ended by malicious stuff in the data.

However I don't agree with the js counterpart's approach; brute force replacing all & and > in the input with the corresponding html entities isn't a palatable solution. I could envision scenarios where I have those in my props and I don't want them to turn into htmlentities.

Happy to think through solutions here if you want to provide a test case.

from hypernova-php.

espretto avatar espretto commented on June 7, 2024

The client-side decoder expects server-rendered JSON to be encoded. The client first reverses the conversion and only then parses to JSON. The server should mirror the decoder. Example:

str_replace(['&', '>'], ['&', '>'], json_encode(data));

Unfortunately, there's no flag available to make htmlspecialchars do this. The other special chars are not needed because only > can terminate an html comment (spec). Let's say the above expression is returned by a function hypernova_encode, here is how it compares to json_encode:

$data = ['xss' => 'comment--><script>window.close()</script>'];

sprintf('<script type="application/json"><!--%s--></script>', json_encode($data));
// <script type="application/json"><!--{"xss":"comment--><script>window.close()</script>"}--></script>

sprintf('<script type="application/json"><!--%s--></script>', hypernova_encode($data));
// <script type="application/json"><!--{"xss":"comment--&gt;<script-&gt;window.close()</script-&gt;"}--></script>

from hypernova-php.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.