Skip to content

Critical: All https requests fail after upgrading OpenSSL 3.5.4 to 3.6 #229

@forthrin

Description

@forthrin
ruby      2025-08-01 30a20bc16
System Version: macOS 15.6 (24G84)
Model Identifier: MacBookAir10,1
require 'openssl'
require 'net/http'

http = Net::HTTP.new('example.com', 443)
http.use_ssl = true
# http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.send_request('GET', '/')
/opt/homebrew/lib/ruby/gems/3.4.0/gems/net-protocol-0.2.2/lib/net/protocol.rb:46:in 'OpenSSL::SSL::SSLSocket#connect_nonblock': SSL_connect returned=1 errno=0 peeraddr=23.220.75.245:443 state=error: certificate verify failed (unable to get certificate CRL) (OpenSSL::SSL::SSLError)
require 'socket'
require 'openssl'

tcp_socket = TCPSocket.new('example.com', 443)
ssl_context = OpenSSL::SSL::SSLContext.new
ssl_socket = OpenSSL::SSL::SSLSocket.new(tcp_socket, ssl_context)
ssl_socket.connect # WFM
# ALL WFM

require 'excon'
require 'faraday'
require 'httparty'
require 'patron'
require 'rest-client'
require 'typhoeus'

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions