使用Ruby 1.9.3的OpenSSL问题

前端之家收集整理的这篇文章主要介绍了使用Ruby 1.9.3的OpenSSL问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Ubuntu 12.04上有OpenSSL 1.0.1 Ruby 1.9.3的半严重问题.

所有ruby都安装有rvm

  1. require 'uri'
  2. require 'net/http'
  3. require 'net/https'
  4.  
  5. endpoint = "https://secure.mmoagateway.com/api/transact.PHP"
  6. RUBY_184_POST_HEADERS = { "Content-Type" => "application/x-www-form-urlencoded" }
  7. body = "orderid=ae5dd847d9f31209cbffeeea076ed966&orderdescription=Active+Merchant+Remote+Test+Purchase&ccnumber=4111111111111111&ccexp=0913&cvv=123&company=Widgets+Inc&address1=1234+My+Street&address2=Apt+1&city=Ottawa&state=ON&zip=K1C2N6&country=CA&phone=%28555%29555-5555&firstname=&lastname=&email=&amount=1.00&type=auth&username=demo&password=password"
  8. headers = {}
  9.  
  10. endpoint = endpoint.is_a?(URI) ? endpoint : URI.parse(endpoint)
  11.  
  12. http = Net::HTTP.new(endpoint.host,endpoint.port)
  13. http.use_ssl = true
  14. http.verify_mode = OpenSSL::SSL::VERIFY_NONE
  15. http.set_debug_output(STDOUT)
  16.  
  17. result = http.post(endpoint.request_uri,body,RUBY_184_POST_HEADERS.merge(headers))
  18. puts(result)

在Ubuntu 12.04 Ruby 1.9.3打开1.0.1我得到以下输出

  1. % ruby test.rb
  2. opening connection to secure.mmoagateway.com...
  3. opened
  4. Conn close because of connect error Connection reset by peer - SSL_connect
  5. /usr/lib/ruby/1.9.1/net/http.rb:799:in `connect': Connection reset by peer - SSL_connect (Errno::ECONNRESET)
  6. from /usr/lib/ruby/1.9.1/net/http.rb:799:in `block in connect'
  7. from /usr/lib/ruby/1.9.1/timeout.rb:54:in `timeout'
  8. from /usr/lib/ruby/1.9.1/timeout.rb:99:in `timeout'
  9. from /usr/lib/ruby/1.9.1/net/http.rb:799:in `connect'
  10. from /usr/lib/ruby/1.9.1/net/http.rb:755:in `do_start'
  11. from /usr/lib/ruby/1.9.1/net/http.rb:744:in `start'
  12. from /usr/lib/ruby/1.9.1/net/http.rb:1284:in `request'
  13. from /usr/lib/ruby/1.9.1/net/http.rb:1307:in `send_entity'
  14. from /usr/lib/ruby/1.9.1/net/http.rb:1096:in `post'
  15. from test.rb:17:in `<main>'

使用Ruby 1.8.7,我得到正确的输出

  1. $ruby test.rb
  2. opening connection to secure.mmoagateway.com...
  3. opened
  4. <- "POST /api/transact.PHP HTTP/1.1\r\nAccept: */*\r\nContent-Type: application/x-www-form-urlencoded\r\nConnection: close\r\nContent-Length: 347\r\nHost: secure.mmoagateway.com\r\n\r\n"
  5. <- "orderid=ae5dd847d9f31209cbffeeea076ed966&orderdescription=Active+Merchant+Remote+Test+Purchase&ccnumber=4111111111111111&ccexp=0913&cvv=123&company=Widgets+Inc&address1=1234+My+Street&address2=Apt+1&city=Ottawa&state=ON&zip=K1C2N6&country=CA&phone=%28555%29555-5555&firstname=&lastname=&email=&amount=1.00&type=auth&username=demo&password=password"
  6. -> "HTTP/1.1 200 OK\r\n"
  7. -> "Date: Wed,04 Jul 2012 01:26:35 GMT\r\n"
  8. -> "Server: Apache\r\n"
  9. -> "Content-Length: 240\r\n"
  10. -> "Connection: close\r\n"
  11. -> "Content-Type: text/html\r\n"
  12. -> "\r\n"
  13. reading 240 bytes...
  14. -> "response=1&responsetext=SUCCESS&authcode=123456&transactionid=1648894346&avsresponse=N&cvvresponse=N&orderid=ae5dd847d9f31209cbffeeea076ed966&type=auth&response_code=100&merchant_defined_field_6=&merchant_defined_field_7=&customer_vault_id="
  15. read 240 bytes
  16. Conn close
  17. #<Net::HTTPOK:0xb74175c8>
  18. response=1&responsetext=SUCCESS&authcode=123456&transactionid=1648894346&avsresponse=N&cvvresponse=N&orderid=ae5dd847d9f31209cbffeeea076ed966&type=auth&response_code=100&merchant_defined_field_6=&merchant_defined_field_7=&customer_vault_id=

我在1.9.3和1.0.1中有同样的问题.

如果我在我的12.04系统上安装1.0.0e从oneiric它也可以与ruby 1.9.3正常工作

我认为这可能与ubuntu的bug有关:https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/965371

虽然我从Debian下载了软件包,他们说它是固定的,没有运气.

有没有人遇到类似的问题?

解决方法

连接到授权网关时遇到了同样的问题.最后我能够通过强制sslv3进行连接
  1. http = Net::HTTP.new(uri.host,uri.port)
  2.  
  3. http.use_ssl = true if @is_https
  4. http.verify_mode = OpenSSL::SSL::VERIFY_NONE if @is_https
  5. http.ssl_version = :SSLv3

猜你在找的Ruby相关文章