vote up 6 vote down star

I have a web application where I would like to allow end users to customise the look of the web site by uploading their own css file.

Are there any security issues with this? I can't see anything obvious but thought I'd ask in case there was anything I'd missed.

flag

78% accept rate

7 Answers

vote up 9 vote down check

Javascript can be executed in CSS, you have to make sure that you are using some filtering.

I have also seen incidents where someone has covered the entire page on a microsoft controlled site with a transparent pixel, linking to a malicious site. Clicking anywhere triggered the attackers site to appear.

This could however be safe if the user only sees his or her own CSS, and they would have no way of someone else viewing what they have done. Otherwise some sort of whitelist or markdown would work.

link|flag
1  
Well, if they are editing their own CSS they could only do an XSS attack on themselves, not too worrisome :-) – Vinko Vrsalovic Sep 21 at 9:13
That depends on the site structure. – n1313 Sep 21 at 9:14
How can javascript be executed in CSS? – Tor Haugen Sep 21 at 9:15
2  
For IE there's the expression property. – meder Sep 21 at 9:16
There's also behaviours, [-ms-]behavior in IE and -moz-binding in Firefox. – bobince Sep 21 at 9:23
show 2 more comments
vote up 2 vote down

You may get customer support overhead if a user with his custom CSS screws the screen to that extent that he won't find the controls to reset it back. In which case you as admin will need to do it manually.

For that case a possible solution. Arrange for a specific Url to reset the style. Something like:

http://mysite.com/users/234234/reset

And advice to the user when he's about to modify the style to remember this Url and just follow it if things have gone out of control. When hit, the custom styles will be deactivated.

link|flag
2  
Actually, as other replies have noted, you can execute JavaScript in CSS. slideshare.net/simon/… – jammycakes Sep 21 at 9:14
vote up 2 vote down

Depending on your server and configurations, it may be possible to run server-side code from a CSS file (though, this isn't default behavior on servers I know).

link|flag
vote up 2 vote down

Short answer: no. First bad things that come to mind are MSIE expressions.

link|flag
vote up 3 vote down

Hi,

I wouldn't do it because CSS can show an image that could exploit some OS vulnerability in example.

Regards.

link|flag
Far less of an issue than scripting. – Sam152 Oct 3 at 13:49
vote up 2 vote down

If these CSS files are available to all site users, and not just the person who uploaded, then there's a possible XSRF vector - you could include links to offsite resources in the CSS which perform "undesirable" effects to the user requesting them.

link|flag
You can preform XSRF much easier by embedding images which is far more common for websites to allow. – Sam152 Sep 21 at 11:06
vote up 6 vote down

Short answer: no it isn't. HTC in IE and XBL in Mozilla are both potential attack vectors. A hack of this nature was used to steal 30,000 MySpace passwords a while back.

Source: Simon Willison, Web Security Horror Stories

link|flag

Your Answer

Get an OpenID
or

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