MOON
Server: Apache
System: Linux nserver.cafsindia.com 4.18.0-553.104.1.lve.el8.x86_64 #1 SMP Tue Feb 10 20:07:30 UTC 2026 x86_64
User: cafsindia (1002)
PHP: 8.2.30
Disabled: NONE
Upload Files
File: //home/cafsindia/allyindian_com/sbltt/dashboard/download.php
<?php
	
	//echo $_GET['url']; die();
	
	$url = '';
	
	/*if(array_key_exists('url', $_GET)
	   and filter_var($_GET['url'], FILTER_VALIDATE_URL)) {
		 $url = $_GET['url'];
	}*/
	$url                 = $_GET['url'];
	$chl                 = $url;
	$cht                 = "qr";
	$chs                 = "300x300";
	$choe                = "UTF-8";
	$qrcode              = 'https://chart.googleapis.com/chart?cht='. $cht . '&chs=' . $chs . '&chl=' . $chl . '&choe=' . $choe;
	header('Content-Type: image/png');
	header('Content-Disposition: attachment; filename="chart.png"');
	$image = file_get_contents($qrcode);
	header('Content-Length: ' . strlen($image));
	echo $image;
?>