Is it possible to use cross site scripting in a CSS stylesheet? For example a reference stylesheet contains malicious code, how would you do this? I know you can use style tags but what about stylesheets?
|
From the browser security handbook
... and after reading that, I find this on StackOverflow. See http://stackoverflow.com/questions/476276/using-javascript-in-css#answer-482088 In Firefox, you can use XBL to inject javascript in a page via CSS. However, the XBL file must reside in the same domain, now that bug 324253 is fixed. There is another interesting (though different from your question) way to abuse CSS. See http://scarybeastsecurity.blogspot.com/2009/12/generic-cross-browser-cross-domain.html. Essentially, you misuse the CSS parser to steal content from a different domain. |
||||
|
|
yes its call Xsstc , read more in this article: http://www.tralfamadore.com/2008/08/xsstc-cross-site-scripting-through-css.html |
|||