From c45cde12f74597819d9761f9045d56c8782e6505 Mon Sep 17 00:00:00 2001 From: Rouji Date: Sun, 12 Jul 2020 12:50:46 +0200 Subject: [PATCH] check for 0B files and reject them --- index.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 6295b31..04fab4f 100755 --- a/index.php +++ b/index.php @@ -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; }