gpt4 book ai didi

ruby - 净 :HTTP SSL negotiation timeout on Ubuntu 14. 04

转载 作者:太空宇宙 更新时间:2023-11-03 16:44:55 24 4
gpt4 key购买 nike

经过漫长的一天,我终于查明了我认为是服务器不支持最新和最好版本的 SSL/TLS 密码协商问题。

堆栈:

  • Ubuntu 14.04 完全修补
  • OpenSSL 1.0.1f 2014 年 1 月 6 日
  • IRB 0.9.6(09/06/30)
  • ruby 2.2.2p95(2015-04-13 修订版 50295)[x86_64-linux](使用 rbenv)

60 秒后,下面的代码片段给我一个错误:

require 'net/http'
require 'openssl'
uri = URI.parse('https://some_old_server/my/path')
http = Net::HTTP.new('some_old_server', 443)
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.use_ssl = true
response = http.request(Net::HTTP::Get.new(uri.request_uri))

Errno::ECONNRESET: Connection reset by peer - SSL_connect

如果我将此添加到代码中,它会起作用:

(...)
http.ciphers = ['AES128-SHA']
(...)

=> #<Net::HTTPOK 200 OK readbody=true>

这不是特定于 ruby​​ 的问题,但理想情况下有一个 ruby​​ 解决方案。我无法将密码锁定为“AES128-SHA”,因为相同的代码处理许多可能支持也可能不支持此密码的站点。

有没有人遇到过这个问题并找到了通用的解决方案?

编辑:这似乎是由“TLS hang bug”引起的并且是fixed in openssl 1.0.1g .

新问题:是否有可以在 ruby​​ 端实现的解决方法?

更多信息。

2014 年 10 月 15 日运行 OpenSSL 1.0.1j 的 Gentoo 服务器没有这个问题。我尝试在 Ubuntu 14.04 服务器上安装 1.0.1j,重新编译 ruby​​(rbenv install 2.2.2),错误仍然存​​在。

我试过 monkey patch ext/openssl但这没有用。

使用上面链接中的整个密码列表是行不通的。但是,使用一小部分确实有效:

require 'net/http'
require 'openssl'
uri = URI.parse('https://some_old_server/my/path')
http = Net::HTTP.new('some_old_server', 443)
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.use_ssl = true
http.ciphers = %w{
AES128-GCM-SHA256
AES256-GCM-SHA384
AES128-SHA256
AES256-SHA256
AES128-SHA
AES256-SHA
ECDHE-ECDSA-RC4-SHA
ECDHE-RSA-RC4-SHA
RC4-SHA
}.join(":")
response = http.request(Net::HTTP::Get.new(uri.request_uri))

Openssl 同意 ruby​​(应该如此)。在同一个系统上运行它们会复制我在 ruby​​ 中看到的问题:

openssl s_client -connect some_old_server:443
CONNECTED(00000003)
(...)
write:errno=104
---
no peer certificate available
---
No client certificate CA names sent
---
SSL handshake has read 0 bytes and written 295 bytes
---
New, (NONE), Cipher is (NONE)
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
---

传递密码:

openssl s_client -cipher AES128-SHA -connect some_old_server:443
CONNECTED(00000003)
(...)
---
No client certificate CA names sent
---
SSL handshake has read 2721 bytes and written 425 bytes
---
New, TLSv1/SSLv3, Cipher is AES128-SHA
Server public key is 2048 bit
Secure Renegotiation IS NOT supported
Compression: NONE
Expansion: NONE
SSL-Session:
Protocol : TLSv1
Cipher : AES128-SHA
Session-ID: removed
Session-ID-ctx:
Master-Key: removed
Key-Arg : None
PSK identity: None
PSK identity hint: None
SRP username: None
Start Time: 1454394952
Timeout : 300 (sec)
Verify return code: 20 (unable to get local issuer certificate)
---

我在某处阅读以使用

http.ssl_options = OpenSSL::SSL::OP_ALL

但 ssl_options 在 ruby​​ 2.2.2 上的 Net::HTTP 中不可用。

最佳答案

在这方面花费的时间比我愿意承认的要多,我的解决方案是从 Ubuntu 14.04 升级到 15.10,它随附于 OpenSSL 1.0.2d 9 Jul 2015

虽然使用 openssl CLI TLS 协商仍然挂起,但在 Ruby 中它不会:

require 'net/http'
require 'openssl'
require 'pp'

uri = URI.parse('https://broken_server/my/path')
http = Net::HTTP.new('broken_server', 443)

http.instance_eval {
@ssl_context = OpenSSL::SSL::SSLContext.new
@ssl_context.set_params({:options=>OpenSSL::SSL::OP_ALL})
}

http.verify_mode = OpenSSL::SSL::VERIFY_NONE
http.use_ssl = true
pp response = http.request(Net::HTTP::Get.new(uri.request_uri))

SSL context code above courtesy of @vinhboy .

上面的 CLI 等效项是 turned-on with the -bugs option :

openssl s_client -bugs -connect broken_server:443

关于ruby - 净 :HTTP SSL negotiation timeout on Ubuntu 14. 04,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35146913/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com