]> granicus.if.org Git - php/commitdiff
add test for bug #68976
authorStanislav Malyshev <stas@php.net>
Wed, 18 Mar 2015 00:03:46 +0000 (17:03 -0700)
committerStanislav Malyshev <stas@php.net>
Wed, 18 Mar 2015 00:03:46 +0000 (17:03 -0700)
ext/standard/tests/serialize/bug68976.phpt [new file with mode: 0644]

diff --git a/ext/standard/tests/serialize/bug68976.phpt b/ext/standard/tests/serialize/bug68976.phpt
new file mode 100644 (file)
index 0000000..a79a953
--- /dev/null
@@ -0,0 +1,37 @@
+--TEST--
+Bug #68976 Use After Free Vulnerability in unserialize()
+--FILE--
+<?php
+class evilClass {
+       public $name;
+       function __wakeup() {
+               unset($this->name);
+       }
+}
+
+$fakezval = pack(
+    'IIII',
+    0x00100000,
+    0x00000400,
+    0x00000000,
+    0x00000006 
+);
+
+$data = unserialize('a:2:{i:0;O:9:"evilClass":1:{s:4:"name";a:2:{i:0;i:1;i:1;i:2;}}i:1;R:4;}');
+
+for($i = 0; $i < 5; $i++) {
+    $v[$i] = $fakezval.$i;
+}
+
+var_dump($data);
+?>
+===DONE===
+--EXPECTF--
+array(2) {
+  [0]=>
+  object(evilClass)#1 (0) {
+  }
+  [1]=>
+  int(1)
+}
+===DONE===