ruby-changes:66710
From: Shugo <ko1@a...>
Date: Wed, 7 Jul 2021 19:26:56 +0900 (JST)
Subject: [ruby-changes:66710] e2ac25d0eb (ruby_3_0): Fix StartTLS stripping vulnerability
https://git.ruby-lang.org/ruby.git/commit/?id=e2ac25d0eb From e2ac25d0eb66de99f098d6669cf4f06796aa6256 Mon Sep 17 00:00:00 2001 From: Shugo Maeda <shugo@r...> Date: Tue, 11 May 2021 10:31:27 +0900 Subject: Fix StartTLS stripping vulnerability This fixes CVE-2021-32066. Reported by Alexandr Savca in <https://hackerone.com/reports/1178562>. --- lib/net/imap.rb | 8 +++++++- test/net/imap/test_imap.rb | 31 +++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/lib/net/imap.rb b/lib/net/imap.rb index 505b4c8..d45304f 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -1218,12 +1218,14 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/imap.rb#L1218 end resp = @tagged_responses.delete(tag) case resp.name + when /\A(?:OK)\z/ni + return resp when /\A(?:NO)\z/ni raise NoResponseError, resp when /\A(?:BAD)\z/ni raise BadResponseError, resp else - return resp + raise UnknownResponseError, resp end end @@ -3719,6 +3721,10 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/imap.rb#L3721 class ByeResponseError < ResponseError end + # Error raised upon an unknown response from the server. + class UnknownResponseError < ResponseError + end + RESPONSE_ERRORS = Hash.new(ResponseError) RESPONSE_ERRORS["NO"] = NoResponseError RESPONSE_ERRORS["BAD"] = BadResponseError diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb index 8b924b5..85fb71d 100644 --- a/test/net/imap/test_imap.rb +++ b/test/net/imap/test_imap.rb @@ -127,6 +127,16 @@ class IMAPTest < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/net/imap/test_imap.rb#L127 imap.disconnect end end + + def test_starttls_stripping + starttls_stripping_test do |port| + imap = Net::IMAP.new("localhost", :port => port) + assert_raise(Net::IMAP::UnknownResponseError) do + imap.starttls(:ca_file => CA_FILE) + end + imap + end + end end def start_server @@ -834,6 +844,27 @@ EOF https://github.com/ruby/ruby/blob/trunk/test/net/imap/test_imap.rb#L844 end end + def starttls_stripping_test + server = create_tcp_server + port = server.addr[1] + start_server do + sock = server.accept + begin + sock.print("* OK test server\r\n") + sock.gets + sock.print("RUBY0001 BUG unhandled command\r\n") + ensure + sock.close + server.close + end + end + begin + imap = yield(port) + ensure + imap.disconnect if imap && !imap.disconnected? + end + end + def create_tcp_server return TCPServer.new(server_addr, 0) end -- cgit v1.1 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/