In WebKit I get the following error on my JavaScript:

Refused to execute a JavaScript script. Source code of script found within request.

The code is for a JavaScript spinners, see ASCII Art.

The code used to be working OK, and is still working correct in Camino and Firefox. The error only seems to be thrown when the page is saved via a POST and then retrieved via a GET. It both happens in Chrome/Mac and Safari/Mac.

Anyone knows what this mean, and how to fix this?

link|improve this question

80% accept rate
Hmm, probably my WebKit has been updated. The page works again. Also all old revisions of the page (see Old Revisions button on the bottom of the page). – doekman Oct 11 '09 at 13:59
this error occurs in the tryit editor of w3schools w3schools.com/js/tryit.asp?filename=tryjs_events the script is executed the first time, but it's blocked from the moment you click on the "edit and click me" button. – francis May 10 '11 at 20:20
If you press the "edit and click me" button, the content of the textarea (with the javascript) is sent to the server via a POST. Chrome detects javascript is posted to the server and it might be malicious. The blocking is the measure against XSS attacks. – doekman May 11 '11 at 8:59
feedback

4 Answers

up vote 30 down vote accepted

It's a security measure to prevent XSS (cross-site scripting) attacks.

This happens when some JavaScript code is sent to the server via an HTTP POST request, and the same code comes back via the HTTP response. If Chrome detects this situation, the script is refused to run, and you get the error message Refused to execute a JavaScript script. Source code of script found within request.

Also see this blogpost about Security in Depth: New Security Features.

link|improve this answer
5  
It would be nice to see some kind of reference. – kangax Oct 11 '09 at 6:31
but is this gona cause any problems? meaning is it ok if we ignore this message? – Salman mahmood Aug 4 '11 at 12:03
feedback

This "feature" can be disabled by sending the non-standard HTTP header X-XSS-Protection on the effected page.

X-XSS-Protection: 0
link|improve this answer
1  
Thank you! This deserves so many more upvotes. – John Douthat Apr 28 at 20:26
feedback

Do you have an example of a page that generates the error? I'm one of the developers of the XSS filter and I'd like to see if we can eliminate this false positive. Thanks.

link|improve this answer
Just click "ASCII Art" in the question. – doekman Oct 11 '09 at 13:16
@Adam: Is this the filter you're talking about? lists.macosforge.org/pipermail/webkit-dev/2008-December/… – doekman Oct 11 '09 at 13:58
2  
Looks like we fixed this when we made the filter a bit tighter to reduce the false positives. Thanks for the feedback! – user187789 Oct 12 '09 at 21:57
1  
Not 100%. I just saved the page in Chrome/Mac, and I got the afore mentioned error message. It seems only to happen when the page is saved and retrieved with a post (or a get after post, I can't see that right now). @Adam: does this ring a bell? – doekman Oct 14 '09 at 19:23
A bit late, but I did not see this error message until today: I also get this in Safari when pasting code from a page into the location bar. See meta.stackoverflow.com/questions/3122/formatting-sandbox/… if that is still there when you read this. – Arjan Dec 3 '10 at 18:02
show 3 more comments
feedback

Here's an example of what I believe is a false positive for you Adam:-

  1. Go here: http://forums.bukkit.org/threads/info-admin-logblock-v1-01-new-commands-system-find-those-damn-griefers-818.4543/
  2. click the reply button at the bottom of the first post.
  3. Click "More Options" button

You'll see it totally messes up the page, seems to break request paths.

Chrome version with the error: 13.0.782.1 dev-m

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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