aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-12-08 10:25:57 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-12-08 11:33:08 +0100
commit62afc060a849f75f8a2ffae68bf1a81bc3226707 (patch)
tree5d53d83092a417d1dc5067e34ee56ca43645da74
parentb835c426d4d8baf17cb8cc4d016944603376cc99 (diff)
Security fix in ext.php (#4928)
Details later. Due to https://github.com/FreshRSS/FreshRSS/pull/3433 (1.18.0)
-rw-r--r--p/ext.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/p/ext.php b/p/ext.php
index b4d32f7ed..2979e2365 100644
--- a/p/ext.php
+++ b/p/ext.php
@@ -101,7 +101,8 @@ if (!isset($_GET['f']) ||
$file_name = urldecode($_GET['f']);
$file_type = $_GET['t'];
-if (empty(SUPPORTED_TYPES[$file_type])) {
+if (empty(SUPPORTED_TYPES[$file_type]) ||
+ empty(SUPPORTED_TYPES[pathinfo($file_name, PATHINFO_EXTENSION)])) {
sendBadRequestResponse('File type is not supported.');
}