
Originally Posted by
ThinIce
Am also patiently waiting for this. Understand that QA takes time, however it might have been good to have posted some official advice to this thread of the best course of action. "Downgrade to php5.3.8 with Suhosin" (if this is indeed the correct course of action). Otherwise people just see "security release not yet provided".
There's no need to downgrade -- if you have Suhosin with the default settings, you are safe under PHP 5.3.9. You can check by checking the output of these two commands:
Code:
# php -i | grep 'suhosin.request.max_vars'
suhosin.request.max_vars => 1000 => 1000
# php -i | grep 'max_input_vars'
max_input_vars => 1000 => 1000
If suhosin.request.max_vars is less than or equal to max_input_vars, then you are protected.
Also, using ModSecurity with a decent set of rules will go a long ways toward protecting you as well. Supposedly the ASL rules already limit the request variables to 1000. Other rules exist that detect things like hex encoded and null characters that are typical in hacking attempts.