1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

check for 0B files and reject them

This commit is contained in:
Rouji 2020-07-12 12:50:46 +02:00
parent 98b7c16263
commit c45cde12f7

View File

@ -102,9 +102,17 @@ function store_file($name, $tmpFile, $formatted = false)
}
//check file size
if (filesize($tmpFile) > $MAX_FILESIZE * 1024 * 1024)
$size = filesize($tmpFile);
if ($size > $MAX_FILESIZE * 1024 * 1024)
{
header("HTTP/1.0 507 Max File Size Exceeded");
header("HTTP/1.0 413 Payload Too Large");
printf("Error 413: Max File Size (%d MiB) Exceeded", $MAX_FILESIZE);
return;
}
if ($size == 0)
{
header("HTTP/1.0 400 Bad Request");
printf("Error 400: Uploaded file is empty", $MAX_FILESIZE);
return;
}