Loading...
Skip to main content

CVE-2016-2097

MEDIUM

actionview contains Path Traversal vulnerability

Published October 24, 2017Updated February 22, 2024Source: osv

Summary

There is a possible directory traversal and information leak vulnerability in Action View. This was meant to be fixed on CVE-2016-0752. However the 3.2 patch was not covering all possible scenarios. This vulnerability has been assigned the CVE identifier CVE-2016-2097. Versions Affected: 3.2.x, 4.0.x, 4.1.x Not affected: 4.2+ Fixed Versions: 3.2.22.2, 4.1.14.2 Impact ------ Applications that pass unverified user input to the `render` method in a controller may be vulnerable to an information leak vulnerability. Impacted code will look something like this: ```ruby def index render params[:id] end ``` Carefully crafted requests can cause the above code to render files from unexpected places like outside the application's view directory, and can possibly escalate this to a remote code execution attack. All users running an affected release should either upgrade or use one of the workarounds immediately. Releases -------- The FIXED releases are available at the normal locations. Workarounds ----------- A workaround to this issue is to not pass arbitrary user input to the `render` method. Instead, verify that data before passing it to the `render` method. For example, change this: ```ruby def index render params[:id] end ``` To this: ```ruby def index render verify_template(params[:id]) end private def verify_template(name) # add verification logic particular to your application here end ``` Patches ------- To aid users who aren't able to upgrade immediately we have provided patches for it. It is in git-am format and consist of a single changeset. * 3-2-render_data_leak_2.patch - Patch for 3.2 series * 4-1-render_data_leak_2.patch - Patch for 4.1 series Credits ------- Thanks to both Jyoti Singh and Tobias Kraze from makandra for reporting this and working with us in the patch!

Remediation

Upgrade to the fixed version using your package manager.

Bundler
Update actionview to 4.1.14.2 or later
gem install actionview -v 4.1.14.2
Bundler
Update actionview to 3.2.22.2 or later
gem install actionview -v 3.2.22.2
Bundler
Update actionpack to 4.1.14.2 or later
gem install actionpack -v 4.1.14.2
Bundler
Update actionpack to 3.2.22.2 or later
gem install actionpack -v 3.2.22.2

After upgrading, run your dependency scanner again to confirm the vulnerability is resolved.

Affected Packages (4)

PackageEcosystemAffectedFixed In
actionview
rubygems
4.1.0, 4.1.0.beta1, 4.1.0.beta2, 4.1.0.rc1 (+31 more)4.1.14.2
actionview
rubygems
All versions3.2.22.2
actionpack
rubygems
4.0.0, 4.0.1, 4.0.1.rc1, 4.0.1.rc2 (+57 more)4.1.14.2
actionpack
rubygems
3.0.0, 3.0.1, 3.0.10, 3.0.10.rc1 (+104 more)3.2.22.2

Vulnerability Classification

Common Weakness Enumeration (CWE) identifiers for this vulnerability type.

CVSS Score Breakdown

What the CVSS (Common Vulnerability Scoring System) 5.3 score means for each attack dimension.

Attack Vector
Network
Attack Complexity
Low
Privileges Required
None
User Interaction
None
Scope
Unchanged
Confidentiality
Low
Integrity
None
Availability
None

CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Frequently Asked Questions

What is CVE-2016-2097?
actionview contains Path Traversal vulnerability This vulnerability has been assigned a severity rating of MEDIUM (CVSS score: 5.3/10).
How do I check if my project is affected by CVE-2016-2097?
CVE-2016-2097 affects actionview and actionpack. Use GeekWala's free vulnerability scanner to check your dependencies against CVE-2016-2097 and 200,000+ other known vulnerabilities.

Severity & Exploitability

CVSS Score
5.3

Exploitation requires specific conditions or has limited impact. Remediate within weeks.

Also Known As

GHSA-vx9j-46rh-fqr8

Related CVEs

Check if you're affected

Scan your dependencies to see if this vulnerability affects your projects.

Scan Your Dependencies