You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This was disabled years ago while we were adding support for it,
but it has been working for some time now. This patch re-enables
hostname verification by default.
This addresses CVE-2025-46551 and GHSA-72qj-48g4-5xgx.
Users can work around this by applying this patch manually to their
own jruby-openssl and jruby installs, or by re-enabling hostname
verification with the following code early in application boot:
```ruby
require 'openssl'
OpenSSL::SSL::SSLContext::DEFAULT_PARAMS[:verify_hostname] = true
```
0 commit comments