Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ GHSA-cfqx-f43m-vfh7 — server

⚪ Unknown ✅ No Known Exploit CWE-548 OSV
N/A
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

@saltcorn/server arbitrary file and directory listing when accessing build mobile app results

Summary

A user with admin permission can read arbitrary file and directory names on the filesystem by calling the admin/build-mobile-app/result?build_dir_name= endpoint. The build_dir_name parameter is not properly validated and it's then used to construct the buildDir that is read. The file/directory names under the buildDir will be returned.

Details

  • file: https://github.com/saltcorn/saltcorn/blob/v1.0.0-beta.13/packages/server/routes/admin.js#L2884-L2893

```js

router.get(

"/build-mobile-app/result",

isAdmin,

error_catcher(async (req, res) => {

const { build_dir_name } = req.query; // [1] source

const rootFolder = await File.rootFolder();

const buildDir = path.join(

rootFolder.location,

"mobile_app",

build_dir_name // [2]

);

const files = await Promise.all(

fs

.readdirSync(buildDir) // [3] sink

.map(async (outFile) => await File.from_file_on_disk(outFile, buildDir))

);

[...]

})

);

```

PoC

  • log into the application as an admin user
  • visit the following url: http://localhost:3000/admin/build-mobile-app/result?build_dir_name=/../../../../../../../../

NOTE: it's possible to only see file and directory names but not to download their content.

Impact

Information disclosure

Recommended Mitigation

Resolve the buildDir and check if it starts with ${rootFolder.location}/mobile_app.

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs administrative privileges on the target. No user interaction is required. Rated impact: confidentiality high, integrity none, availability none.

Weakness class

GHSA-cfqx-f43m-vfh7 is classified as CWE-548: Exposure of Information Through Directory Listing. The product inappropriately exposes a directory listing with an index of all the resources located inside of the directory.

Affected software

GHSA-cfqx-f43m-vfh7 is recorded against 1 package.

  • @saltcorn/server

Timeline and source

Published on 3 October 2024. No public exploit is currently recorded for this entry. Record sourced from OSV.

References

github.com (Web)
github.com (Web)
github.com (Package)
github.com (Web)

Details

Severity Unknown
CVSS Score N/A
CVSS Vector CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:P
CWE CWE-548
Public Exploit ✅ No
Source OSV
Published 2024-10-03
Updated 2026-08-20
Modified 2024-10-03
Fix URL N/A

Affected Packages

Software From version Fixed in
@saltcorn/server

Similar Threats

Free Vulnerability Check

Is your site affected by GHSA-cfqx-f43m-vfh7?

BotEraser helps you identify potentially vulnerable plugins and themes by checking your installation against GHSA-cfqx-f43m-vfh7 and other known CVE records.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.