In a few clicks we can analyze your entire application and see what components are vulnerable in your application, and suggest you quick fixes.
Test your applicationsUpgrade rack
to version 2.2.20, 3.1.18, 3.2.3 or higher.
rack is a minimal, modular and adaptable interface for developing web applications in Ruby. By wrapping HTTP requests and responses in the simplest way possible, it unifies and distills the API for web servers, web frameworks, and software in between (the so-called middleware) into a single method call.
Affected versions of this package are vulnerable to Information Exposure in the Rack::Sendfile()
when running behind a proxy that supports x-sendfile
headers. An attacker can access internal endpoints intended to be protected by sending specially crafted x-sendfile-type
or x-accel-mapping
headers, causing the proxy to reissue internal requests that bypass access controls. This is only exploitable if the application uses Rack::Sendfile
with a proxy supporting x-accel-redirect
, the proxy does not always set or remove the x-sendfile-type
and x-accel-mapping
headers, and the application exposes an endpoint that returns a body responding to .to_path
.
This vulnerability can be mitigated by configuring the proxy to always set or strip the affected headers, or by disabling sendfile functionality in Rails applications.