Multiple vulnerabilities in parameter parsing in Action Pack
31–40 of 294 posts
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#32I'm just commenting here so that people can have a central thread for love / hatred. ;-) But seriously. This is extremely critical, please upgrade!
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#33I'm just commenting here so that people can have a central thread for love / hatred. ;-) But seriously. This is extremely critical, please upgrade!
3 links on HN frontpage for this same vulnerability proves the love of the community to warn each other tenderly.
This one deals with problematic JSON parsing and affects only 3.x. It is dealt with in the release that fixes the other vulnerability
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#34Re: Multiple vulnerabilities in parameter parsing in Action Pack
#35As a newcomer to the Rails ecosystem all these posts of vunlerabilities and open doors leaves a bad taste in my mouth. God know I love programming in Ruby now, but is Rails really that insecure?
I can't comment on how on-the-ball the Rails security team is, but I can say it's really easy to update your apps.
It's also relative to your alternatives. It's way safer than not using a framework. Is it safer than Django? That's kind of unknowable; maybe, maybe not.
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#36I'm just commenting here so that people can have a central thread for love / hatred. ;-) But seriously. This is extremely critical, please upgrade!
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#37Can anyone with a more intimate knowledge of the inner workings of Ruby on Rails speak to how detrimental this exploit is in practice? I seem to recall a fair number of people feeling the SQL injection exploit from a few days ago was being blown out of proportion and I was wondering how this particular exploit stacks up against it.
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#38Considering it affects all versions, what are the odds of multiple people pointing this out at the same time?
Rails has a very good track record regarding these things, but I'm just curious.
Re: Multiple vulnerabilities in parameter parsing in Action Pack
#39Re: Multiple vulnerabilities in parameter parsing in Action Pack
#40I'm just commenting here so that people can have a central thread for love / hatred. ;-) But seriously. This is extremely critical, please upgrade!
As a simple solution, one could pass a signed auth-hash of the fields generated by form_for, and the server could re-hash the fields submitted to ensure the form data you asked for is what you get (this solves the primary issue with attr_accessible). I feel getting this right is crucial to Rails' future.