Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is something I've always been curious about, is exactly why Google prepends while(1); to their (private) JSON responses.

For example, here's a response while turning a calendar on and off in Google Calendar:

while(1);[['u',[['smsSentFlag','false'],['hideInvitations','false'],['remindOnRespondedEventsOnly','true'],['hideInvitations_remindOnRespondedEventsOnly','false_true'],['Calendar ID stripped for privacy','false'],['smsVerifiedFlag','true']]]]

I would assume this is to prevent people from doing an eval() on it, but all you'd really have to do is replace the while and then you'd be set. I would assume eval prevention is to make sure people write safe JSON parsing code.

I've seen this used in a couple other places, too, but a lot more so with Google (Mail, Calendar, Contacts, etc.) Strangely enough, Google Docs starts with &&&START&&& instead, and Google Contacts seems to start with while(1); &&&START&&&.

Does anyone know what's going on here?

share|improve this question
1  
I believe that your first impression is correct. If you start looking for code and try to trim the input stream depending on the source, you'd reconsider and do it the safe (and because of Google's actions, easier) way. – voyager Apr 19 '10 at 18:04

4 Answers

up vote 886 down vote accepted

It prevents json hijacking.

Contrived example: say Google has a URL like gmail.com/json?action=inbox which returns the first 50 messages of your inbox in JSON format. Evil websites on other domains can't make AJAX requests to get this data due to the same-origin policy, but they can include the URL via a <script> tag. The URL is visited with your cookies, and by overriding the global array constructor or accessor methods they can have a method called whenever an object (array or hash) attribute is set, allowing them to read the JSON content.

The while(1); or &&&BLAH&&& prevents this: an AJAX request at gmail.com will have full access to the text content, and can strip it away. But a <script> tag insertion blindly executes the JavaScript without any processing, resulting in either an infinite loop or a syntax error.

This does not address the issue of cross-site request forgery.

share|improve this answer
70  
Why doesn't the request to obtain this data require a CSRF-token instead? – Jakub P. Feb 3 at 1:43
37  
Does for(;;); do the same job? I've seen this in facebook's ajax responses. – Levani Feb 4 at 8:27
14  
@Levani Yes, it's the same principle. – Pewpewarrows Feb 4 at 20:15
31  
@JakubP. Storing and maintaining CSRF-tokens at Google's scale requires a large amount of infrastructure and cost. – abraham Feb 5 at 5:12
13  
@JakubP. anti-CSRF tokens mess with caching, and require some amount of cryptographic evaluation server-side. At Google scale, that would require a lot of CPU. This sort of offloads it to the client. – bluesmoon Feb 5 at 6:10
show 19 more comments

This is to ensure some other site can't do nasty tricks to try to steal your data. For example, by replacing the array constructor, then including this JSON URL via a <script> tag, a malicious third-party site could steal the data from the JSON response. By putting a while(1); at the start, the script will crash instead.

A same-site request using XHR and a seperate JSON parser, on the other hand, can easily ignore the while(1); prefix.

share|improve this answer
I suppose the XHR can only be issued to same domain server with authentication. How can "other site" intercept the response? Can you give more details on how "other site" steal our data? – Morgan Cheng May 16 '09 at 2:36
2  
Technically, a "normal" JSON parser should give an error if you have a prefix. – Matthew Crumley May 16 '09 at 3:31
5  
Attackers would just use a plain old <script> element, not an XHR. – Laurence Gonsalves May 16 '09 at 4:22
1  
@Matthew, sure, but you can remove it before passing the data to the JSON parser. You can't do that with a <script> tag – bdonlan Feb 24 '11 at 12:54
2  
Are there any examples of this? Replacing the array constructor is referenced again, but that's a bug long fixed. I don't understand how one would have access to the data received via the script tag. I'd love to see a dummy implementation which works in recent browser. – moontear Feb 5 at 13:37
show 3 more comments

That would be to make it difficult for a third-party to insert the JSON response into an HTML document with the <script> tag. Remember that the <script> tag is exempt from the Same Origin Policy.

There was a related Stack Overflow post a while ago:

share|improve this answer

It prevents it from being used as the target of a simple <script> tag. (Well, it doesn't prevent it, but it makes it unpleasant.) That way bad guys can't just put that script tag in their own site and rely on an active session to make it possible to fetch your content.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.