Is It Possible To Do 'json Hijacking' On Modern Browser?
Recently I read some articles about 'JSON hijacking', and some of one is here. So, I tried to do below on my browsers, Chrome 17(dev), Firefox 8, and IE8. override Object or Array
Solution 1:
It's not about the legitimate application parsing the JSON - JSON hijacking is an information disclosure issue about some malicious party requesting your JSON data instead of the real application while the user is logged into the application that uses the api usually. Simple authentication does not help - as the browser sends the auth information e.g. auth-cookie for free :-/.
But with ES5 most current browser won't be affected anymore directly by this issue. Nonetheless, in depth defense rules! And may protect against future issues too or regressions and etc.
Post a Comment for "Is It Possible To Do 'json Hijacking' On Modern Browser?"