Faraday: Uncontrolled recursion in NestedParamsEncoder allows stack exhaustion DoS via deeply nested query parameters
Package
Affected versions
>= 2.0.0, <= 2.14.2
>= 1.0.0, <= 1.10.5
Patched versions
2.14.3
1.10.6
Description
Published to the GitHub Advisory Database
Jun 19, 2026
Reviewed
Jun 19, 2026
Published by the National Vulnerability Database
Jun 24, 2026
Last updated
Jun 26, 2026
Faraday::NestedParamsEncoder, the default nested query parameter encoder/decoder in Faraday, decodes nested query strings without enforcing a maximum nesting depth.A crafted query string such as:
causes Faraday to build a deeply nested Ruby
Hashstructure. The internaldehashroutine then recursively walks this attacker-controlled structure without a depth limit. At sufficient depth, Ruby raises an uncaughtSystemStackError(stack level too deep), crashing the calling thread or worker. This can lead to denial of service in applications that pass attacker-controlled query strings to Faraday's nested query parsing or URL-building paths.This has been patched in version 2.14.3 and backported to 1.10.6.
References