0byt3m1n1
Path:
/
data
/
17
/
1
/
18
/
11
/
1670011
/
user
/
1801231
/
htdocs
/
metalsh
/
[
Home
]
File: cda.php
<?php $file = "Confidential_Disclosure_Agreements.doc"; // Quick check to verify that the file exists if( !file_exists($file) ) die("File not found"); // Force the download header("Content-Disposition: attachment; filename=\"" . basename($file) . "\""); header("Content-Length: " . filesize($file)); header("Content-Type: application/octet-stream;"); readfile($file); ?>