Security
Headlines
HeadlinesLatestCVEs

Headline

CVE-2023-30852

Pimcore is an open source data and experience management platform. Prior to version 10.5.21, the /admin/misc/script-proxy API endpoint that is accessible by an authenticated administrator user is vulnerable to arbitrary JavaScript and CSS file read via the scriptPath and scripts parameters. The scriptPath parameter is not sanitized properly and is vulnerable to path traversal attack. Any JavaScript/CSS file from the application server can be read by specifying sufficient number of ../ patterns to go out from the application webroot followed by path of the folder where the file is located in the “scriptPath” parameter and the file name in the “scripts” parameter. The JavaScript file is successfully read only if the web application has read access to it. Users should update to version 10.5.21 to receive a patch or, as a workaround, apply the patch manual.

CVE
#web#js#git#java#php#perl#auth

From 498cadec2292f7842fb10612068ac78496e884b4 Mon Sep 17 00:00:00 2001 From: robertSt7 [email protected] Date: Thu, 20 Apr 2023 16:56:53 +0200 Subject: [PATCH] [Security] Admin Authenticated Arbitrary File Read (#14974) * Fix: disable asset importFromServer for users * Doc: Add Upgrade Notes — …/AdminBundle/Controller/Admin/Asset/AssetController.php | 4 ++++ bundles/AdminBundle/Resources/public/js/pimcore/asset/tree.js | 2 ± …/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md | 4 ++++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/bundles/AdminBundle/Controller/Admin/Asset/AssetController.php b/bundles/AdminBundle/Controller/Admin/Asset/AssetController.php index c2a6a90b244…f3ec571ee62 100644 — a/bundles/AdminBundle/Controller/Admin/Asset/AssetController.php +++ b/bundles/AdminBundle/Controller/Admin/Asset/AssetController.php @@ -2459,6 +2459,10 @@ public function importServerAction(Request $request) */ public function importServerFilesAction(Request $request) { + if(!Tool\Admin::getCurrentUser()->isAdmin()) { + throw $this->createAccessDeniedException(‘Permission denied. You don\’t have the rights to import files from the server!’); + } + $assetFolder = Asset::getById((int) $request->get(‘parentId’)); if (!$assetFolder) { throw $this->createNotFoundException(‘Parent asset not found’); diff --git a/bundles/AdminBundle/Resources/public/js/pimcore/asset/tree.js b/bundles/AdminBundle/Resources/public/js/pimcore/asset/tree.js index 29072edae4b…6ad46d37747 100644 — a/bundles/AdminBundle/Resources/public/js/pimcore/asset/tree.js +++ b/bundles/AdminBundle/Resources/public/js/pimcore/asset/tree.js @@ -594,7 +594,7 @@ pimcore.asset.tree = Class.create({ }); } - if (perspectiveCfg.inTreeContextMenu(“asset.add.importFromServer”)) { + if (perspectiveCfg.inTreeContextMenu(“asset.add.importFromServer”) && pimcore.currentuser.admin) { menuItems.push({ text: t(“import_from_server”), handler: this.importFromServer.bind(this, tree, record), diff --git a/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md b/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md index 37c474f3076…3a870e9a793 100644 — a/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md +++ b/doc/Development_Documentation/23_Installation_and_Upgrade/09_Upgrade_Notes/README.md @@ -1,8 +1,12 @@ # Upgrade Notes +## 10.5.21 ± [Assets] The Asset `Import from Server` feature is now only available for admins. It will be removed in Pimcore 11 + ## 10.5.13 - [Web2Print] Print document twig expressions are now executed in a sandbox with restrictive security policies (just like Sending mails and Dataobject Text Layouts introduced in 10.5.9). + ## 10.5.10 - [DataObject] Deprecated: Loading non-Concrete objects with the Concrete class will not be possible in Pimcore 11.

Related news

GHSA-j5c3-r84f-9596: Arbitrary File Read in Admin JS CSS files

### Impact It was observed that the `/admin/misc/script-proxy` API endpoint accessible by an authenticated administrator user and is vulnerable arbitrary JavaScript, CSS file read via the "scriptPath" and "scripts" parameters. The "scriptPath" parameter is not sanitized properly and is vulnerable to path traversal attack. Any JavaScript/CSS file from the application server can be read by specifying sufficient number of "../" patterns to go out from the application webroot followed by path of the folder where the file is located in the "scriptPath" parameter and the file name in the "scripts" parameter. The JavaScript file is successfully read only if the web application has read access to it. ### Patches Update to version 10.5.21 or apply this patch manually https://github.com/pimcore/pimcore/commit/1d128404eddf4beb560d434437347da7aea059eb.patch ### Workarounds Apply patch https://github.com/pimcore/pimcore/commit/1d128404eddf4beb560d434437347da7aea059eb.patch manually. ### Referenc...

CVE: Latest News

CVE-2023-50976: Transactions API Authorization by oleiman · Pull Request #14969 · redpanda-data/redpanda
CVE-2023-6905
CVE-2023-6903
CVE-2023-6904
CVE-2023-3907