|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesMaschkrsm5138 (last revision 2014-07-27 08:09 UTC by omarguerrero2079 at gmail dot com)Pull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
[2014-04-16 14:02 UTC] ab@php.net
-Assigned To:
+Assigned To: ab
[2014-04-17 09:10 UTC] ab@php.net
[2014-04-17 09:10 UTC] ab@php.net
-Status: Assigned
+Status: Closed
[2014-04-20 18:38 UTC] ab@php.net
[2014-04-20 18:39 UTC] ab@php.net
[2014-05-01 14:59 UTC] tyrael@php.net
[2014-06-19 23:54 UTC] tyrael@php.net
[2014-10-07 23:15 UTC] stas@php.net
[2014-10-07 23:26 UTC] stas@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Oct 28 13:00:01 2025 UTC |
Description: ------------ Executing the script below crashes PHP. Some quick debugging on my part seems to point to a NULL dereference bug in the spl related code. However, since I was debugging from the binary it's hard to tell where exactly in the code it is. Test script: --------------- <?php echo unserialize('O:13:"SplFileObject":1:{s:9:"*filename";s:15:"/home/flag/flag";}'); ?> Expected result: ---------------- Since "SplFileObject" aren't serializable, an exception should be thrown or bool(false) should be returned. Actual result: -------------- PHP crash.