mirror of
https://github.com/Ahwxorg/Binternet.git
synced 2026-03-11 08:54:37 +00:00
15 lines
303 B
PHP
15 lines
303 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);
|
|
}
|
|
?>
|
|
|
|
// somewhat stolen from github.com/hnhx/librex
|