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