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

Some older browsers are vulnerable to XSS attacks as such

<img src="javascript:alert('yo')" />

Current versions of IE, FF, Chrome are not.

I am curious if any browsers are vulnerable to a similar attack:

<img src="somefile.js" />

or

<iframe src="somefile.js" />

or other similar where somefile.js contains some malicious script.

share|improve this question
1  
How about "try and see for yourself"? – Piskvor Nov 26 '09 at 8:27
1  
I did with modern versions of IE, FF and Chrome. Don't have any older browsers so that's why I was asking. – Matthew Dec 1 '09 at 23:32

3 Answers

up vote 2 down vote accepted

No. Image data is never executed as JavaScript. The if the src is a JavaScript link, the JavaScript is executed, but the fundamental reading of data that comes from a request to the src does not involve JavaScript.

share|improve this answer
What about the iframe? Does the above apply to it as well? – ladiesMan217 Jan 16 '12 at 4:02
No, JavaScript is not executed then either. – Eli Grey Jan 16 '12 at 16:58

All major browsers are still vulnerable to these attacks. Tons of ways of using img tags are still around.. For example...

<img src='#' onerror=alert(1) />

Look for RSnake's xss cheatsheet, those are just some vectors. By the way, I've heard he's coming up with a new version of his cheatsheet soon.

share|improve this answer

here you can find some XSS attacking vector http://ha.ckers.org/xss.html

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.