Is JSON.parse() really safer than eval() when web page and ajax call come from same server?

后端 未结 4 1178
无人及你
无人及你 2021-02-05 14:43

I get that JSON.parse() prevents an attacker from injecting javascript into the response since a JSON parser is just a text parser, not a script parser so please don\'t close th

相关标签:
4条回答
  • 2021-02-05 15:13

    Well... I'm not advocating the usage of eval, but I don't think it constitutes a security issue in Javascript, because Javascript is client-side language. If you don't use eval in your code, what prevents me from running javascript:my_own_evil_code() in console or address bar? It is Javascript, I can run my own code or modify yours, create my own HTTP requests and do anything with HTTP responses, or even add my own eval to your functions.

    You shouldn't use eval if there is another comparable solution available, but if you, just for simplicity, want to do eval('('+jsonstring+')') to emulate JSON.parse, I don't think it is a big mistake.

    0 讨论(0)
  • 2021-02-05 15:17

    Well, if they're able to inject into your AJAX responses they've probably already successfully man-in-the-middle'd you in one way or another (ARP, DNS or something else).

    See http://en.wikipedia.org/wiki/Man-in-the-middle_attack for more details on these types of attack.

    You are correct in that, if they can inject into your AJAX response, they can inject whole pages as well. Really, anything you receive OR send via networking is now vulnerable in a MitM unless something like HTTPS\SSL is being used.

    0 讨论(0)
  • 2021-02-05 15:20

    That is a very good point. The only thing I can think of is that JSON.parse would have opportunity to be faster than eval.

    A much less likely advantage is if the browser already has the HTML/JavaScript cached and the server uses Cache-Control to say that it does not need to reload. If that happens then of course a person intercepting would not have a chance to modify the page. But that is a very rare set of circumstances. Chances are, you are going to require the browser to check for a newer version of the HTML/JavaScript which is the default behavior.

    As for the security difference, I think you are correct.

    As for myself, I work with HTTPS confirmed systems only. But I have a function that uses JSON.parse if available and falls back on eval just for the speed improvement.

    0 讨论(0)
  • 2021-02-05 15:24

    Yes, it is really safer. Every precaution you do not take is a set of potential exploits you don't prevent.

    An attacker might be able to have some control over your server's output without being able to change it entirely. Nobody's suggesting it's a magic bullet, but it's potentially faster and you're not creating a potential vulnerability that could come back and hurt you.

    Maybe someone running your server is having a bad day, and does something silly like constructing JSON by concatenating unsanitized user input:

    <?php
        print '{"foo": ' . $_GET['bar'] . '}';
    ?>
    

    If you're using JSON.parse, the worst they can do is shove a large object into your memory. If you're using eval they can hijack everything.

    0 讨论(0)
提交回复
热议问题