Initial commit

This commit is contained in:
2020-12-26 07:42:48 +01:00
commit 55f70d036b
18 changed files with 1151 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
<?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);