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

Dir : /home/trave494/productjuly1video/courtexposures.click/
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/productjuly1video/courtexposures.click/secure_video.php

<?php
session_start();

$str = substr($_SESSION[$_GET['quality']][$_GET['video']], strpos($_SESSION[$_GET['quality']][$_GET['video']], '/upload'));
$path = __DIR__.$str;

$size=filesize($path);
$fm=@fopen($path,'rb');
 
$begin=0;
$end=$size;
header('HTTP/1.0 200 OK');
 
header("Content-Type: video/mp4");
header('Accept-Ranges: bytes');
header('Content-Length:'.($end-$begin));
header("Content-Disposition: inline;");
header("Content-Range: bytes $begin-$end/$size");
header("Content-Transfer-Encoding: binary\n");
header('Connection: close');
 
$cur=$begin;
fseek($fm,$begin,0);
 
while(!feof($fm)&&$cur<$end&&(connection_status()==0))
{ print fread($fm,min(1024*16,$end-$cur));
  $cur+=1024*16;
  usleep(1000);
}
die();

//$path = $_SESSION[$_GET['quality']][$_GET['video']];
// header("Cache-Control: no-store, no-cache, must-revalidate");
// header('Accept-Ranges: bytes');
// header("Content-Type:video/mp4");
// $output_file=readfile($path);
// print $output_file;