View file 9apps/get.php

File size: 550B
<?
$d = $_GET['d'];
$n = $_GET['n'];
$size = $_GET['sz'];
if(!empty($d)){
header('Location: http://www.9apps.com/jump/down/'.$d.'/app/');
}else{
header('Location: /');
}

if(!empty($_GET['i'])){
$file = 'http://debu.us/screen/'.$_GET['i'].'.jpg';
$filename = 'image_'.rand(10,9999).'_[www.ipankwap.com].jpg';
if (isset($file)){
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-type: image/jpeg');
header("Content-Disposition: attachment; filename= $filename");
readfile($file);
}}
?>>