I'm playing firebug with Google Calendar. I happens to find that some XHR request has response like below:

while(1);[['us','bW9yZ2FuLmNoZW5nbW9AZ21haWwuY29t 20090320/20090904 63378122163']]

It looks like a JSON with prefix dead-loop javascript statements.

I'm not sure why Google Calendar has such kind of XHR response. Is there any known AJAX practice about this?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 29 down vote accepted

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.

link|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
3  
Attackers would just use a plain old <script> element, not an XHR. – Laurence Gonsalves May 16 '09 at 4:22
@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
@bdonian: Of course. I was just being pedantic and wanted to make sure nobody got confused about JSON. I like the new wording a lot better :) – Matthew Crumley Feb 25 '11 at 0:03
feedback

Your Answer

 
or
required, but never shown

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