From 1324d1626daa7fc87313484b4518c04c3e457cd2 Mon Sep 17 00:00:00 2001 From: vnmedeiros Date: Mon, 29 Jul 2024 10:20:34 -0300 Subject: [PATCH] fix: any user can read any file without any restrictions --- ...n-rest-background-processes-controller.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/classes/api/endpoints/class-tainacan-rest-background-processes-controller.php b/src/classes/api/endpoints/class-tainacan-rest-background-processes-controller.php index 0574b2e96..e127bb439 100644 --- a/src/classes/api/endpoints/class-tainacan-rest-background-processes-controller.php +++ b/src/classes/api/endpoints/class-tainacan-rest-background-processes-controller.php @@ -373,9 +373,28 @@ class REST_Background_Processes_Controller extends REST_Controller { 'error_message' => __('guid must be specified', 'tainacan' ) ], 400); } + if (!is_user_logged_in() || !current_user_can('read') ) { + $error_def = [ + "code" => "unauthorized", + "message" => "Unauthorized", + "data" => [ "status" => 403 ], + ]; + return new \WP_REST_Response($error_def, 403, array('content-type' => 'text/html; charset=utf-8')); + } + $guid = $request['guid']; $upload_url = wp_upload_dir(); $path = $upload_url['basedir'] . '/tainacan/' . $guid; + $real_file_path = realpath($path); + if (strpos($real_file_path, $path) !== 0) { + $error_def = [ + "code" => "unauthorized_file_path", + "message" => "Unauthorized file path", + "data" => [ "status" => 403 ], + ]; + return new \WP_REST_Response($error_def, 403, array('content-type' => 'application/json; charset=utf-8')); + } + if ( file_exists( $path ) ) { $finfo = @finfo_open(FILEINFO_MIME_TYPE); $mime_type = @finfo_file($finfo, $path);