GHSA-CWV4-H3J5-W3CF

GHSA-CWV4-H3J5-W3CF is a low-severity security vulnerability in rama (rust), affecting versions < 0.3.0-rc.1. It is fixed in 0.3.0-rc.1.

Does this CVE actually affect you?

Kodem shows which CVEs are reachable and running in your applications, so you fix what's exploitable, not just what's listed.

Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Runtime intelligence, not another scanner.

Summary

rama has Stored XSS in ServeDir HTML directory listing via unescaped file names and URI path

Resolved: https://github.com/plabayo/rama/commit/89ddff578fd78bbebec99482d7030f28c07757a3

plabayo/rama contains a stored/reflected cross-site scripting issue in the ServeDir HTML directory listing feature.

When ServeDir is configured with DirectoryServeMode::HtmlFileList, file names and URI path components are inserted directly into generated HTML without HTML escaping. If an attacker can create or influence a file or directory name inside a served directory, they may inject HTML or JavaScript into the directory listing page.

This can execute script in the browser of any user who visits the affected directory listing.

Affected Repository

plabayo/rama

Affected Component

rama-http/src/service/fs/serve_dir/open_file.rs

Root Cause

The HTML directory listing is constructed using string formatting and inserts untrusted values directly into HTML.

The directory listing row includes the file or directory name in both the link text and the href attribute:

rows.push(format!(
    "<tr><td>{5} <a href=\"{1}{2}{0}\">{0}</a></td><td>{3}</td><td>{4}</td></tr>",
    entry.name,
    uri.path().trim_end_matches('/'),
    ...
));

The navigation breadcrumb also inserts URI path parts into generated HTML:

nav_parts.push(format!("<a href=\"{current_path}\">{part}</a>"));

The page title and heading also include the current URI path:

<title>Directory listing for .{0}</title>
<h1>Directory listing for .{0}</h1>

These values are not HTML-escaped before being embedded into the generated page.

Security Impact

If an application uses ServeDir with DirectoryServeMode::HtmlFileList, an attacker who can create or influence file names inside the served directory can inject HTML or JavaScript into the generated directory listing.

Possible impact includes:

  • Script execution in the browser of users viewing the directory listing
  • Session or token theft if the application uses cookies or browser-accessible credentials
  • UI redressing or phishing inside the application origin
  • Unauthorized actions within the same origin if the victim is authenticated
  • Security boundary impact if the directory listing is served under a trusted application domain

The attack requires the directory listing feature to be enabled and the attacker to control or influence at least one file or directory name in the served path.

Proof of Concept

This proof of concept uses a benign payload.

Create a directory with a file name containing HTML:

mkdir rama-xss-test
cd rama-xss-test
touch '"><img src=x onerror=alert(document.domain)>.txt'

Serve this directory with Rama using ServeDir and DirectoryServeMode::HtmlFileList.

Example intended configuration:

ServeDir::new("rama-xss-test")
    .with_directory_serve_mode(DirectoryServeMode::HtmlFileList)

Then visit the directory listing in a browser.

Expected behavior:

The file name should be displayed as text. Special characters such as <, >, ", and ' should be HTML-escaped.

Actual behavior:

The file name is inserted directly into the generated HTML. The browser interprets the injected HTML and executes the benign JavaScript payload.

Expected Behavior

All file names, directory names, URI path parts, and other untrusted values should be escaped before being inserted into HTML.

For example:

  • < should become &lt;
  • > should become &gt;
  • " should become &quot;
  • ' should become &#x27;
  • & should become &amp;

Untrusted values used inside HTML attributes should be escaped using an attribute-safe escaping function.

Actual Behavior

The directory listing is generated with format!() and inserts file names and path values directly into HTML without escaping.

Suggested Severity

Medium.

Suggested CVSS:

CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N

Rationale:

  • The vulnerability is remotely reachable when an application exposes ServeDir directory listings.
  • Exploitation requires the attacker to create or influence a file or directory name in the served directory.
  • User interaction is required because a victim must view the affected directory listing.
  • The impact is browser-side script execution in the application origin.
  • Scope may change if the listing is served under a trusted authenticated application origin.

Additional Notes

This report is limited to the HTML directory listing generated by ServeDir when DirectoryServeMode::HtmlFileList is enabled.

This report is not claiming remote code execution on the server. The issue is browser-side cross-site scripting caused by unescaped file names and path values in generated HTML.

Impact

GHSA-CWV4-H3J5-W3CF has a CVSS score of 3.7 (Low). The vector is requires local access, high privileges required, and user interaction required. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (0.3.0-rc.1); upgrading removes the vulnerable code path.

Affected versions

rama (< 0.3.0-rc.1)

Security releases

rama → 0.3.0-rc.1 (rust)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

Already deployed Kodem?

See it in your environmentNew to Kodem? Get a demo →

Remediation advice

Escape all untrusted values before inserting them into the generated HTML.

Recommended changes:

  1. HTML-escape entry.name before using it as link text.
  2. Attribute-escape values used inside href.
  3. HTML-escape URI path components used in breadcrumbs.
  4. HTML-escape the current path used in the page title and heading.
  5. Add regression tests with file names containing HTML metacharacters.

Example test payloads:

"><img src=x onerror=alert(1)>.txt
<script>alert(1)</script>.txt
a&b.txt
quote"test.txt
single'test.txt

The secure output should render these as text only and should not create executable HTML or JavaScript.

Frequently Asked Questions

  1. What is GHSA-CWV4-H3J5-W3CF? GHSA-CWV4-H3J5-W3CF is a low-severity security vulnerability in rama (rust), affecting versions < 0.3.0-rc.1. It is fixed in 0.3.0-rc.1.
  2. How severe is GHSA-CWV4-H3J5-W3CF? GHSA-CWV4-H3J5-W3CF has a CVSS score of 3.7 (Low). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
  3. Which versions of rama are affected by GHSA-CWV4-H3J5-W3CF? rama (rust) versions < 0.3.0-rc.1 is affected.
  4. Is there a fix for GHSA-CWV4-H3J5-W3CF? Yes. GHSA-CWV4-H3J5-W3CF is fixed in 0.3.0-rc.1. Upgrade to this version or later.
  5. Is GHSA-CWV4-H3J5-W3CF exploitable, and should I be worried? Whether GHSA-CWV4-H3J5-W3CF is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  6. What actually determines whether GHSA-CWV4-H3J5-W3CF is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  7. How do I fix GHSA-CWV4-H3J5-W3CF? Upgrade rama to 0.3.0-rc.1 or later.

Stop the waste.
Protect your environment with Kodem.