6 ms·
Perhaps I don't know enough about how this works, but couldn't you use this to inject runnable javascript in to a page? If this is possible it's pretty scary as
by rescripting 14y ago
Perhaps I don't know enough about how this works, but couldn't you use this to inject runnable javascript in to a page? If this is possible it's pretty scary as it would allow you to upload a hidden payload in to an otherwise innocent looking image.
- WiseWeasel 14y agoI was able to add javascript code in there and it executed properly, but the browser won't parse the jpg as html unless I give it a .html filename extension. I don't see how this could be easily exploitable.
- lindenr 14y agoIs it possible for the file extension to say one thing and the MIME type to say something else? So the file extension could be .jpg (reassuring the user that it is only an image) but the HTTP response says it is text/html? I think a similar exploit was used recently with .svg images - they can contain javascript (being XML) which will be executed by the browser. Not sure about the details however.
- luchs 14y ago>I think a similar exploit was used recently with .svg images - they can contain javascript (being XML) which will be executed by the browser. Not sure about the details however. However, the JavaScript shouldn't execute if the image is embedded via <img>.
- subleq 14y agoYes, certain versions of IE can be tricked into executing javascript in images: http://www.h-online.com/security/features/Risky-MIME-sniffing-in-Internet-Explorer-746229.html http://www.h-online.com/security/features/Risky-MIME-sniffin...
- Tobu 14y agoIndeed: https://code.google.com/p/browsersec/wiki/Part2#Survey_of_content_sniffing_behaviors https://code.google.com/p/browsersec/wiki/Part2#Survey_of_co...
- kpi 14y agoInteresting thought but browsers should not interpret javascript inside an image. I would expect image rendering to be separated. Can someone with an expertise in browser design tell us how this actually works?