HEX
Server: LiteSpeed
System: Linux server257.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: salhiscp (12590)
PHP: 8.4.12
Disabled: NONE
Upload Files
File: /home/salhiscp/salhab360photos.com/wp-content/plugins/fwdevp/content/downloader.php
<?php 
   header("Content-Type: application/octet-stream");
   header("Content-Disposition: attachment; filename=". $_GET['name']);
   
   $path = $_GET['path'];
  
   $pathFragments = explode('/', $path);
   $first ='';
   $end = end($pathFragments);
   for($i=0; $i<count($pathFragments) - 1; $i++){
	$first .= $pathFragments[$i].'/';
   }
   $first = rawurlencode($first);
   $first = str_replace("%2F","/",$first);
   $first = str_replace("%3A",":",$first);
  
   $path = $first . rawurlencode($end);

  if(isset($path))readfile($path);
?>