Is there any way to limit PHP's unserialize() to only parse arrays? For security reasons. Suppose there is is an evil __unserialize() magic method in the unserialized object I don't wanna call!
|
feedback
|
|
There are a couple of ways you could solve this problem:
Piwik patched an unserialize vulnerability with the following check:
And please ignore all comments that don't see a security issue here. unserialize() vulnerabilites exists in an incredible high percentage of PHP5 Applications and most books and tutorials don't even talk about them. | |||
feedback
|
Not that I know of, no. It is possible to find out the type of a serialized value using a function like this one, but that won't help you either, as any member of the array could again be an object whose unserializing will trigger a You would have to extend that function so it walks through all the members of the serialized string without actually serializing it. Certainly possible, but potentially kludgy and slow. The only other way that comes to mind is to make the That said, never forget that a serialized object will never contain any code. The class definition will have to be present in your code base through other means. In light of that, I'm not sure under what circumstances this can be a security problem in the first place. If you have malicious code in your code base, there will be plenty of chance to execute it without having to unserialize anything, won't they? | |||||||||||
feedback
|
|
I have never seen this attack vector in the wild. If you are expecting to get an array then you won't be calling However, you can use this simple function:
the | |||||
feedback
|