mirror of
https://github.com/Ahwxorg/Binternet.git
synced 2026-03-11 08:54:37 +00:00
19 lines
352 B
PHP
19 lines
352 B
PHP
<?php
|
|
|
|
require "misc/tools.php";
|
|
|
|
$url = $_REQUEST["url"];
|
|
$requested_root_domain = get_root_domain($url);
|
|
|
|
$allowed_domains = array("pinimg.com", "i.pinimg.com", "pinterest.com");
|
|
|
|
if (in_array($requested_root_domain, $allowed_domains))
|
|
{
|
|
$image = $url;
|
|
$image_src = request($image);
|
|
|
|
header("Content-Type: image/png");
|
|
echo $image_src;
|
|
}
|
|
|
|
?>
|