mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
013e0f98ac
* PHP-8.2:
unserialize: Strictly check for `:{` at object start (#10214)
11 lines
261 B
PHP
11 lines
261 B
PHP
--TEST--
|
|
Bug #74111: Heap buffer overread (READ: 1) finish_nested_data from unserialize
|
|
--FILE--
|
|
<?php
|
|
$s = 'O:8:"stdClass":00000000';
|
|
var_dump(unserialize($s));
|
|
?>
|
|
--EXPECTF--
|
|
Warning: unserialize(): Error at offset 23 of 23 bytes in %s on line %d
|
|
bool(false)
|