bug72663_2.phpt 937 B

1234567891011121314151617181920212223242526272829
  1. --TEST--
  2. Bug #72663 (2): Don't allow references into failed unserialize
  3. --FILE--
  4. <?php
  5. class obj implements Serializable {
  6. public $data;
  7. function serialize() {
  8. return serialize($this->data);
  9. }
  10. function unserialize($data) {
  11. $this->data = unserialize($data);
  12. }
  13. }
  14. $inner = 'a:1:{i:0;O:9:"Exception":2:{s:7:"'."\0".'*'."\0".'file";s:0:"";}';
  15. $exploit = 'a:2:{i:0;C:3:"obj":'.strlen($inner).':{'.$inner.'}i:1;R:4;}';
  16. var_dump(unserialize($exploit));
  17. ?>
  18. --EXPECTF--
  19. Deprecated: %s implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in %s on line %d
  20. Notice: unserialize(): Unexpected end of serialized data in %s on line %d
  21. Notice: unserialize(): Error at offset 49 of 50 bytes in %s on line %d
  22. Notice: unserialize(): Error at offset 82 of 83 bytes in %s on line %d
  23. bool(false)