blob: a65f11db6ae7e661583e4678f5c62b7c33d4905b [file] [log] [blame]
<?php
$cookie_check = $_GET["Cookie"];
if (isset($cookie_check)) {
if ($cookie_check == "NotSet") {
if (isset($_COOKIE['TestCookie'])) {
header("HTTP/1.0 404 Not Found");
exit;
}
} else if ($cookie_check != $_COOKIE['TestCookie']) {
header("HTTP/1.0 404 Not Found");
exit;
}
}
$name = 'abe.png';
$fp = fopen($name, 'rb');
header("Content-Type: image/png");
header("Content-Length: " . filesize($name));
fpassthru($fp);
exit;
?>