Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Ruby on Rails 1.2.4
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  2 messages - 1 new - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Michael Koziarski  
View profile  
 More options Oct 9 2007, 9:33 pm
From: "Michael Koziarski" <mich...@koziarski.com>
Date: Wed, 10 Oct 2007 14:33:45 +1300
Local: Tues, Oct 9 2007 9:33 pm
Subject: Ruby on Rails 1.2.4
The release of Ruby on Rails 1.2.4 addresses some potential security
issues, all users of earlier versions are advised to upgrade to 1.2.4:

The particular issues are:

# Potential Information Disclosure or DoS with Hash#from_xml

Maliciously crafted requests to a rails application could cause the
XML parser to read files from the server's disk or the network.  1.2.4
removes this functionality entirely.

# Session Fixation attacks.

The session functionality in rails allowed users to provide their
session_id in the URL as well as cookies.  The functionality could be
exploited by a malicious user to obtain an authenticated session.

Users who rely on URL based sessions can re-enable them as follows:

config.action_controller.session_options[:session_secure] = true

--
Cheers

Koz


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Koziarski  
View profile  
 More options Oct 12 2007, 6:25 pm
From: "Michael Koziarski" <mich...@koziarski.com>
Date: Sat, 13 Oct 2007 11:25:00 +1300
Subject: Re: Ruby on Rails 1.2.4
The issues mentioned in this advisory now have CVE numbers.

> # Potential Information Disclosure or DoS with Hash#from_xml

CVE-2007-5379

> # Session Fixation attacks.

CVE-2007-5380

> config.action_controller.session_options[:session_secure] = true

This was a typo, to re-enable URL based sessions you need the
following line in your environment.rb file.

config.action_controller.session_options[:cookie_only] = false

--
Cheers

Koz


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »