Skip to content

Commit 85543c7

Browse files
committed
Revert "Ruby: upgrade to 2.6.9 to fix CVE-2021-41817, CVE-2021-41819 (#2366)"
This reverts commit 4c46342.
1 parent 1e579dd commit 85543c7

File tree

4 files changed

+114
-9
lines changed

4 files changed

+114
-9
lines changed

SPECS/ruby/CVE-2021-32066.patch

+108
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
From a21a3b7d23704a01d34bd79d09dc37897e00922a Mon Sep 17 00:00:00 2001
2+
From: Yusuke Endoh <[email protected]>
3+
Date: Wed, 7 Jul 2021 12:06:44 +0900
4+
Subject: [PATCH] Fix StartTLS stripping vulnerability
5+
6+
Reported by Alexandr Savca in https://hackerone.com/reports/1178562
7+
8+
Co-authored-by: Shugo Maeda <[email protected]>
9+
---
10+
lib/net/imap.rb | 8 +++++++-
11+
test/net/imap/test_imap.rb | 31 +++++++++++++++++++++++++++++++
12+
version.h | 2 +-
13+
3 files changed, 39 insertions(+), 2 deletions(-)
14+
15+
diff --git a/lib/net/imap.rb b/lib/net/imap.rb
16+
index 1c7e89b..91df89b 100644
17+
--- a/lib/net/imap.rb
18+
+++ b/lib/net/imap.rb
19+
@@ -1215,12 +1215,14 @@ module Net
20+
end
21+
resp = @tagged_responses.delete(tag)
22+
case resp.name
23+
+ when /\A(?:OK)\z/ni
24+
+ return resp
25+
when /\A(?:NO)\z/ni
26+
raise NoResponseError, resp
27+
when /\A(?:BAD)\z/ni
28+
raise BadResponseError, resp
29+
else
30+
- return resp
31+
+ raise UnknownResponseError, resp
32+
end
33+
end
34+
35+
@@ -3716,6 +3718,10 @@ module Net
36+
class ByeResponseError < ResponseError
37+
end
38+
39+
+ # Error raised upon an unknown response from the server.
40+
+ class UnknownResponseError < ResponseError
41+
+ end
42+
+
43+
RESPONSE_ERRORS = Hash.new(ResponseError)
44+
RESPONSE_ERRORS["NO"] = NoResponseError
45+
RESPONSE_ERRORS["BAD"] = BadResponseError
46+
diff --git a/test/net/imap/test_imap.rb b/test/net/imap/test_imap.rb
47+
index 936f4e0..217b611 100644
48+
--- a/test/net/imap/test_imap.rb
49+
+++ b/test/net/imap/test_imap.rb
50+
@@ -127,6 +127,16 @@ class IMAPTest < Test::Unit::TestCase
51+
imap.disconnect
52+
end
53+
end
54+
+
55+
+ def test_starttls_stripping
56+
+ starttls_stripping_test do |port|
57+
+ imap = Net::IMAP.new("localhost", :port => port)
58+
+ assert_raise(Net::IMAP::UnknownResponseError) do
59+
+ imap.starttls(:ca_file => CA_FILE)
60+
+ end
61+
+ imap
62+
+ end
63+
+ end
64+
end
65+
66+
def test_unexpected_eof
67+
@@ -762,6 +772,27 @@ EOF
68+
end
69+
end
70+
71+
+ def starttls_stripping_test
72+
+ server = create_tcp_server
73+
+ port = server.addr[1]
74+
+ start_server do
75+
+ sock = server.accept
76+
+ begin
77+
+ sock.print("* OK test server\r\n")
78+
+ sock.gets
79+
+ sock.print("RUBY0001 BUG unhandled command\r\n")
80+
+ ensure
81+
+ sock.close
82+
+ server.close
83+
+ end
84+
+ end
85+
+ begin
86+
+ imap = yield(port)
87+
+ ensure
88+
+ imap.disconnect if imap && !imap.disconnected?
89+
+ end
90+
+ end
91+
+
92+
def create_tcp_server
93+
return TCPServer.new(server_addr, 0)
94+
end
95+
diff --git a/version.h b/version.h
96+
index 1c491eb..2f4fcdf 100644
97+
--- a/version.h
98+
+++ b/version.h
99+
@@ -1,6 +1,6 @@
100+
#define RUBY_VERSION "2.6.7"
101+
#define RUBY_RELEASE_DATE "2021-04-05"
102+
-#define RUBY_PATCHLEVEL 197
103+
+#define RUBY_PATCHLEVEL 198
104+
105+
#define RUBY_RELEASE_YEAR 2021
106+
#define RUBY_RELEASE_MONTH 4
107+
--
108+
2.17.1

SPECS/ruby/ruby.signatures.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"Signatures": {
3-
"ruby-2.6.9.tar.xz": "6a041d82ae6e0f02ccb1465e620d94a7196489d8a13d6018a160da42ebc1eece"
3+
"ruby-2.6.7.tar.xz": "f43ead5626202d5432d2050eeab606e547f0554299cc1e5cf573d45670e59611"
44
}
55
}

SPECS/ruby/ruby.spec

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Summary: Ruby
22
Name: ruby
3-
Version: 2.6.9
4-
Release: 1%{?dist}
3+
Version: 2.6.7
4+
Release: 3%{?dist}
55
License: (Ruby OR BSD) AND Public Domain AND MIT AND CC0 AND zlib AND UCD
66
Vendor: Microsoft Corporation
77
Distribution: Mariner
88
Group: System Environment/Security
99
URL: https://www.ruby-lang.org/en/
1010
Source0: https://cache.ruby-lang.org/pub/ruby/2.6/%{name}-%{version}.tar.xz
11-
11+
Patch0: CVE-2021-32066.patch
1212
BuildRequires: openssl-devel
1313
BuildRequires: readline
1414
BuildRequires: readline-devel
@@ -62,9 +62,6 @@ sudo -u test make test TESTS="-v"
6262
%{_mandir}/man5/*
6363

6464
%changelog
65-
* Tue Mar 01 2022 Nicolas Guibourge <[email protected]> - 2.6.9-1
66-
- Upgrade to 2.6.9 to fix CVE-2021-41817, CVE-2021-41819
67-
6865
* Thu Jan 20 2022 Cameron Baird <[email protected]> - 2.6.7-3
6966
- Bump release to build and republish with mariner-rpm-macros fix to filter out references to module_info.ld in pkgconfig files
7067

cgmanifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7145,8 +7145,8 @@
71457145
"type": "other",
71467146
"other": {
71477147
"name": "ruby",
7148-
"version": "2.6.9",
7149-
"downloadUrl": "https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.9.tar.xz"
7148+
"version": "2.6.7",
7149+
"downloadUrl": "https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.7.tar.xz"
71507150
}
71517151
}
71527152
},

0 commit comments

Comments
 (0)