<?php
# author penny wise
# telegram @the_penny_wise
require_once ( $_SERVER['DOCUMENT_ROOT']."/_core/system.php" );
$name = htmlspecialchars($_GET['name']);
if ($name != null) {
curl::img($name);
}else{
header("Location: /");
exit();
}
?>