This repository has been archived on 2026-05-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2021-06-17 22:03:14 +02:00

13 lines
259 B
PHP

<?php
// this could have been done better but whatever
header ('Content-Type: image/png');
$file = "./black.png";
if (!empty($_GET["path"]) && file_exists($_GET["path"]) && !is_dir($_GET["path"]))
{
$file = $_GET["path"];
}
echo file_get_contents($file);