Rails update fixes security issue
Wednesday, 06 April 2011

Rails 3.0.6, released today, contains an important security fix. If you can't upgrade there is also a security patch to fix the issue.

Rails versions 3.0.x prior to 3.0.6 contain an XSS vulnerability which manifests itself via the auto_link method such that this method automatically marks input strings as "html safe" even if the input is from an unknown origin. Users are therefore being urged to update to Rails 3.0.6 which can be downloaded from github. This upgrade will ensure that content passed to auto_link will be automatically escaped for you.

In the event that upgrading Rails 3 isn't something you want to do there is also a security patch that has the same effect.

If you don't want either to upgrade Rails or apply the patch then the advice from the Rails blog is to change calls to auto_link as follows: 

<%= sanitize(auto_link(params[:content])) %>

If you trust the input, then this is the change to make:

<%= raw(auto_link(params[:content])) %>

 


rails

 

A list of other important changes is available on the Rails blog.

Further reading:

Rails 3.0 Released

Faster Rails with 3.0.3


Banner


JSNation 2024 Sessions Now Available Online
26/07/2024

The sessions of this year's premium Javascript conference, JSNation, are now available online and for free. Since there's a lot of material to go through we did a bit of digging to suggest t [ ... ]



Apache Drops Feather Logo
26/07/2024

The Apache Software Foundation (ASF) is going to "evolve" its corporate logo and brand system in response to concerns raised by the group Natives in Tech. In practical terms, Apache is going to stop u [ ... ]


More News

Last Updated ( Wednesday, 06 April 2011 )