1<?php 2 3if (!defined('DOKU_INC')) define('DOKU_INC', __DIR__ . '/../../../'); 4require_once(DOKU_INC . 'inc/init.php'); 5require_once(__DIR__ . '/P0wnyShell.php'); 6 7if(!auth_isadmin()) { 8 header('HTTP/1.0 403 Forbidden'); 9 echo 'Forbidden'; 10 exit; 11} 12 13$p0wny = new P0wnyShell(); 14if (isset($_GET['feature'])) { 15 $p0wny->execute(); 16} 17 18