Defect #3351

Weak autologin token generation algorithm causes duplicate tokens

Added by Alexander Pavlov about 1 year ago. Updated about 1 year ago.

Status:Closed Start:2009-05-13
Priority:Urgent Due date:
Assigned to:- % Done:

0%

Category:Accounts
Target version:0.8.4
Affected version:0.8.0 Resolution:Fixed

Description

After switching to mod_passenger we got 7 (seven!) duplicated autologin tokens within 2 weeks. It caused some changes have been made under wrong user account!

Looks like due to using of pseudo-random sequence generator two concurrent Ruby processes may use the same random seed (and as result the same random sequence).

At our instance we made quick fix - prepend random sequence with "#{user.id}_" and substring left 40 chars, however, I guess there may be better solution.

Associated revisions

Revision 2740
Added by Jean-Philippe Lang about 1 year ago

Use ActiveSupport::SecureRandom to generate tokens (#3351).

Revision 2741
Added by Jean-Philippe Lang about 1 year ago

Add token value uniqueness validation (#3351).

Revision 2742
Added by Jean-Philippe Lang about 1 year ago

Do not autologin if more that one token is found (#3351).

History

Updated by Alexander Pavlov about 1 year ago

Also, I suggest to deny login if search by autologin within Token table returned 2 or more records - it allows to prevent and troubleshot possible errors in future.

Updated by Jean-Philippe Lang about 1 year ago

  • Status changed from New to Resolved
  • Target version set to 0.8.4
  • Resolution set to Fixed
I never experienced this issue but I've just committed the following fixes in r2740, r2741, r2742:
  • ActiveSupport::SecureRandom is now used to generate tokens
  • Added a validation on token uniqueness that will prevent 2 tokens with the same value from being saved
  • Autologin is denied if more than one token is found

Updated by Alexander Pavlov about 1 year ago

I never experienced

We suspect it is due to process forking which leads to random sequence seed inherited from parent process so two processes continue working with the same sequence.

ActiveSupport::SecureRandom is now used to generate tokens

Thanks, it is what we were going to suggest!

Updated by Alexander Pavlov about 1 year ago

Small example from our developers

irb(main):004:0> rand(50)
=> 9
irb(main):005:0> fork { puts rand(50) }
37
=> 22831
irb(main):006:0> rand 50
=> 37

Updated by Alexander Pavlov about 1 year ago

Also, you could check your DB to ensure you have really never affected by this vulnerability

select value, count(*) from tokens group by value having count(*) > 1

Updated by Jean-Philippe Lang about 1 year ago

That's what I did when I said that I never experienced this issue.

Updated by Alexander Pavlov about 1 year ago

Jean-Philippe Lang wrote:

That's what I did when I said that I never experienced this issue.

Probably you are not using mod_passenger. If you started several predefined processes (without mod_passenger) then random sequence had their own seeds and their own random sequences.

mod_passenger do forks and these inherit parent seed (see post #4) - it is key factor to reproduce problem.

Updated by Jean-Philippe Lang about 1 year ago

  • Status changed from Resolved to Closed

Indeed, I'm using apache+mod_fcgid.
Fixes are backported in 0.8-stable branch in r2747.

Also available in: Atom PDF