Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which is more secured and why JSON or XML

I want to implement web services in Java EE whose response is going to be a JSON. This is my first attempt for doing so but before that I just want to know are there any security issues with JSON because everywhere in many blogs I read it is mentioned Like "JSON is not secured in comparison to XML". JSON has several advantages like easy to use, greater speed.

So anyone can explain me the truth whether JSON is really unsecured or not. If so why it is. Please explain with an example.

There are couple old articles on the topic:

JSON vs XML - 2006

  • concerns about eval

JSON is not as safe as people think it is

  • Claims only protection for non-public data available via JSON is to use unique urls.
  • CSRF (Cross Site Request Fogery) - 2007
  • Array hack highjacking parsing of JavaScript by browser.
like image 902
Nikhil Agrawal Avatar asked Apr 30 '13 06:04

Nikhil Agrawal


People also ask

Is XML or JSON more secure?

JSON has no display capabilities whereas XML offers the capability to display data. JSON is less secured whereas XML is more secure compared to JSON. JSON supports only UTF-8 encoding whereas XML supports various encoding formats.

Why is JSON more secure?

JSON, on the other hand, is in itself secure in its default state, but as soon as JSONP is utilized to bypass Same-Origin Policy restrictions (CSRF attacks), it becomes vulnerable because: it allows cross-origin exchanges of data.

Which is better XML or JSON Why?

JSON is simpler than XML, but XML is more powerful. For common applications, JSON's terse semantics result in code that is easier to follow. For applications with complex requirements surrounding data interchange, such as in enterprise, the powerful features of XML can significantly reduce software risk.

Why XML is secured?

XML Security Benefits The ability to selectively encrypt and integrity protect portions of messages. The ability to integrity protect data without encrypting it. The ability to construct overlapping digital signatures using different keys.


6 Answers

There is no security benefit to go with one or the other. Both formats are meant to provide a simple protocol for sending data, and neither use encryption by default (you could add something yourself). JSON is generally considered faster, since it takes less characters to assemble. It is also easy to use in JavaScript, since JSON is simply JavaScript Object Notation, and all JavaScript Objects can be converted to or from JSON representation.

Many (especially newer) developers prefer using XML because of its readability. It is structured in such a way that it is much easier for a human to read through it. This of course is what makes it bulkier than JSON, but it is by no means less secure.

Vulnerabilities that can occur as a result of these transfer protocols are a result of bad parsing. Parsers for services on an open network cannot simply assume that the data is valid, since that may lead to attacks such as code injection - but that has nothing to do with JSON or XML.

like image 56
Phil Avatar answered Oct 13 '22 01:10

Phil


There is no difference security wise between JSON and XML. The "insecurities" referred to by people regarding JSON have to do with the way JSON can (but should never be) parsed in Javascript.

JSON is based on the syntax for coding objects in javascript, so evaluating a JSON result in javascript returns a valid object.

This may open JSON to a variety of javascript injection exploits.

The way to resolve this: don't use eval() to parse JSON in javascript, use a JSON parser and fix any security issues in your server that allow unescaped user generated content in the response.

like image 27
Eli Algranti Avatar answered Oct 13 '22 01:10

Eli Algranti


This is nonsense. Both, json and xml are just methods for representation of structured data. None of them could be considered as "more secured" or "less secured".

like image 30
Andremoniy Avatar answered Oct 13 '22 00:10

Andremoniy


There is no more secure version. There are other features to consider though:

Example 1

Example 2

It doesn't matter whether you work with java, php or perl. They can all parse json and xml. json is lightweight, though xml can handle more. I would say, start with json unless you really need features of xml.

like image 35
Menno Avatar answered Oct 13 '22 00:10

Menno


Both of the formats are representing data therefore there is no difference in security, i have been using JSON for years and never had any security issues.

like image 25
Mike Kuasinski Avatar answered Oct 13 '22 02:10

Mike Kuasinski


JSON and XML both serves as a medium for server client communication. So, why are security concerns with one and not other?

The fundamental difference is that JSON(JavaScript Object Notation) as name suggests is very near and dear to JavaScript and hence in design of some JavaScript methods and functionalities, JavaScript treats JSON strings as it's cup of tea and tries to interpret it directly, which give workarounds to attackers to fool JavaScript interpreter to run malicious JavaScript embedded in the string causing vulnerabilities, while XML has to go through a parsing stage to be parsed into an object making it harder to attack with. 2 such JavaScript functionalities are eval() method and tag.

How does these create a security vulnerabilities?

Although web follows the same-origin policy, historically there have been loopholes found to bypass it and malicious sites use them to send cross site request to authenticated user website, breaking the intent of same-origin policy.

Example : In spite of same-origin policy being in place, web has allowed some tags like <img> <script> to make cross origin GET requests.

let us say you are on a website www.authenticatedwebsite.com, but lured to open a www.malicious.com which has a tag in its html <script src="www.authenticatedwebsite.com/get-user-order-history" />

Attacker from www.malicious.com use this script tag behavior to access your private data from www.authenticatedwebsite.com.

Now, how does a script tag which is calling a src url, store the url response to a javascript object[to perform operations like POSTing it to malicious site server]?

Here comes the role of JSON and XML proves out to be safer here. As JavaScript understands JSON pretty well, some JavaScript interpreters interprets naked JSON string as a valid JavaScript and run it.

What can running a JSON string potentially do, as it is still not assigned to a variable?

This can be achieved by another fancy hack. If the returned JSON string represents an array. JavaScript will try to run the constructor of Array class. Now it is possible to override the constructor of Array in JavaScript. You can do something like :

Array = function(){ yourObject = this };

This is basically overriding JavaScript Array constructor, such that whenever JavaScript calls constructor, the current interpreted array is assigned to yourObject, thus giving malicious website access to your private data.

Now, this attack can be used with variants of JSON strings, with more sophisticated hacks.

Although above represents a valid scenario, where JSON can be dangerous as a return format of your GET APIs. This is actually possible in only some versions of some browsers, and as far as I know, all modern versions of famous browsers have mitigated it, but as your user base can be divided across versions of browsers, you need to be careful with GET APIs giving out private information in naked JSON format.

One of the technique used to circumvent this is adding a while(true) in front of your JSON response strings, which will never allow JavaScript interpreter to reach to the actual string. But it creates parsing overhead on your client side.

Another possible mishaps that JSON can cause is use of eval() method on browser client side to parse JSON. As eval() has capability to run script, if your JSON string contains some hidden script which eval() runs and perform dangerous actions what attacker injected script asks it to do, can prove out to be security issues for your system. But as others have mentioned, this attack can be easily prevented by strictly abandoning eval() method as your JSON parser everywhere in client code. This vulnerability plug in is highly important for websites which stores user generated content.

like image 28
greperror Avatar answered Oct 13 '22 01:10

greperror