Earlier quoted context omitted.
is the badness in st_lookup or rb_enc_str_new ? I haven't traced the execution deep enough to see where things go south...
Oh wait, i get it. every symbolized string is added to the global symbol table, so you can basically make rails devour incredible amounts of memory by sending it new values. neat.
Rails version 3.2.7 has been released
11–20 of 23 posts
Re: Rails version 3.2.7 has been released
#12Is it just me or does it seem like everyone's stack is moving away from Rails? I mean, it's a great solution to many problems, I just feel that there's a lot more platforms that offer you even better customization and leave a far smaller footprint.
Re: Rails version 3.2.7 has been released
#13Is it just me or does it seem like everyone's stack is moving away from Rails? I mean, it's a great solution to many problems, I just feel that there's a lot more platforms that offer you even better customization and leave a far smaller footprint.
Re: Rails version 3.2.7 has been released
#14Earlier quoted context omitted.
is the badness in st_lookup or rb_enc_str_new ? I haven't traced the execution deep enough to see where things go south...
There's badness just in rb_intern, at least in 187. MRI scares the bejeezus out of me.
JRuby also suffers from the global symbol table =( so it does not avoid the potential denial attack through symbolizing..
Re: Rails version 3.2.7 has been released
#15Is it just me or does it seem like everyone's stack is moving away from Rails? I mean, it's a great solution to many problems, I just feel that there's a lot more platforms that offer you even better customization and leave a far smaller footprint.
Definitely what we need in a thread about a security issue in a hugely popular web stack is a language war.
I think asking about alternatives is fair game.
Re: Rails version 3.2.7 has been released
#16Earlier quoted context omitted.
Definitely what we need in a thread about a security issue in a hugely popular web stack is a language war.
"MRI scares the bejeezus out of me" - you, an hour ago I think asking about alternatives is fair game.
You know where the "better alternatives to Rails" thread goes, and it's nowhere helpful for a security advisory post. But, your call, not mine.
Re: Rails version 3.2.7 has been released
#17If you have questions about the release, or the security issue, fire away. :-)
Re: Rails version 3.2.7 has been released
#18Re: Rails version 3.2.7 has been released
#19Earlier quoted context omitted.
"MRI scares the bejeezus out of me" - you, an hour ago I think asking about alternatives is fair game.
JRuby is a good alternative. You know where the "better alternatives to Rails" thread goes, and it's nowhere helpful for a security advisory post. But, your call, not mine.
Re: Rails version 3.2.7 has been released
#20Earlier quoted context omitted.
is the badness in st_lookup or rb_enc_str_new ? I haven't traced the execution deep enough to see where things go south...
There's badness just in rb_intern, at least in 187. MRI scares the bejeezus out of me.