]> granicus.if.org Git - php/commitdiff
Improve fix for #70172
authorStanislav Malyshev <stas@php.net>
Tue, 1 Sep 2015 18:38:15 +0000 (11:38 -0700)
committerStanislav Malyshev <stas@php.net>
Tue, 1 Sep 2015 18:38:39 +0000 (11:38 -0700)
ext/standard/tests/serialize/bug70172.phpt
ext/standard/tests/serialize/bug70172_2.phpt [new file with mode: 0644]
ext/standard/var.c

index 0e9d7ed89a4f0ee4e8cde2417f578e82fe8b126f..0a4aa4be166b75cd84536ff808285c6ef126a068 100644 (file)
@@ -1,5 +1,7 @@
 --TEST--
 Bug #70172 - Use After Free Vulnerability in unserialize()
+--XFAIL--
+Memory leak on debug build, needs fix.
 --FILE--
 <?php
 class obj implements Serializable {
diff --git a/ext/standard/tests/serialize/bug70172_2.phpt b/ext/standard/tests/serialize/bug70172_2.phpt
new file mode 100644 (file)
index 0000000..ae48341
--- /dev/null
@@ -0,0 +1,68 @@
+--TEST--
+Bug #70172 - Use After Free Vulnerability in unserialize()
+--FILE--
+<?php
+class obj implements Serializable {
+       var $data;
+       function serialize() {
+               return serialize($this->data);
+       }
+       function unserialize($data) {
+               $this->data = unserialize($data);
+       }
+}
+
+class obj2 {
+       var $ryat;
+       function __wakeup() {
+               $this->ryat = 1;
+       }
+}
+
+$fakezval = ptr2str(1122334455);
+$fakezval .= ptr2str(0);
+$fakezval .= "\x00\x00\x00\x00";
+$fakezval .= "\x01";
+$fakezval .= "\x00";
+$fakezval .= "\x00\x00";
+
+$inner = 'r:2;';
+$exploit = 'a:2:{i:0;O:4:"obj2":1:{s:4:"ryat";C:3:"obj":'.strlen($inner).':{'.$inner.'}}i:1;a:1:{i:0;a:1:{i:0;R:4;}}}';
+
+$data = unserialize($exploit);
+
+for ($i = 0; $i < 5; $i++) {
+       $v[$i] = $fakezval.$i;
+}
+
+var_dump($data);
+
+function ptr2str($ptr)
+{
+       $out = '';
+       for ($i = 0; $i < 8; $i++) {
+               $out .= chr($ptr & 0xff);
+               $ptr >>= 8;
+       }
+       return $out;
+}
+?>
+--EXPECTF--
+array(2) {
+  [0]=>
+  object(obj2)#%d (1) {
+    ["ryat"]=>
+    int(1)
+  }
+  [1]=>
+  array(1) {
+    [0]=>
+    array(1) {
+      [0]=>
+      object(obj2)#%d (1) {
+        ["ryat"]=>
+        int(1)
+      }
+    }
+  }
+}
\ No newline at end of file
index 33b976f42dff8dc388b92124a1b0c236a23fc259..113b8cb66a82894b4c6b4ffbb534b75ec76e0577 100644 (file)
@@ -981,7 +981,8 @@ PHP_FUNCTION(unserialize)
                *old_rval = *return_value;
                zval_copy_ctor(old_rval);
                var_push_dtor_no_addref(&var_hash, &return_value);
-               var_push_dtor_no_addref(&var_hash, &old_rval);
+               /* FIXME: old_rval is not freed in some scenarios, see bug #70172
+                  var_push_dtor_no_addref(&var_hash, &old_rval); */
        } else {
                var_push_dtor(&var_hash, &return_value);
        }