summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-14 14:57:11 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-12-14 14:57:11 +0000
commitf73b6e22cc5ef9befda9a5a1fb2bc8d481ec36ac (patch)
tree8287d71964839c682459db482a27ee4440a44178
parenta646156e11474ef5f473d2bd19d317d469717caa (diff)
parente1808b522b0f10c5ae45925a7a1ba5aa3067a2f8 (diff)
add tag v2_3_6
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/tags/v2_3_6@61254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/net/ftp/test_ftp.rb18
-rw-r--r--version.h2
3 files changed, 24 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 28c9c706d5..2d26904f0b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 14 23:53:41 2017 NAKAMURA Usaku <usa@ruby-lang.org>
+
+ * test/net/ftp/test_ftp.rb (process_port_or_eprt): merge a part of
+ r56973 to pass the test introduced at previous commit.
+
Thu Dec 14 22:55:05 2017 Shugo Maeda <shugo@ruby-lang.org>
Fix a command injection vulnerability in Net::FTP.
diff --git a/test/net/ftp/test_ftp.rb b/test/net/ftp/test_ftp.rb
index ae07a59056..fbb3bf246e 100644
--- a/test/net/ftp/test_ftp.rb
+++ b/test/net/ftp/test_ftp.rb
@@ -1900,4 +1900,22 @@ EOF
end
end
end
+
+ def process_port_or_eprt(sock, line)
+ case line
+ when /\APORT (.*)/
+ port_args = $1.split(/,/)
+ host = port_args[0, 4].join(".")
+ port = port_args[4, 2].map(&:to_i).inject {|x, y| (x << 8) + y}
+ sock.print("200 PORT command successful.\r\n")
+ return host, port
+ when /\AEPRT \|2\|(.*?)\|(.*?)\|/
+ host = $1
+ port = $2.to_i
+ sock.print("200 EPRT command successful.\r\n")
+ return host, port
+ else
+ flunk "PORT or EPRT expected"
+ end
+ end
end
diff --git a/version.h b/version.h
index 453e52ed2c..4eff5974cc 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.3.6"
#define RUBY_RELEASE_DATE "2017-12-14"
-#define RUBY_PATCHLEVEL 383
+#define RUBY_PATCHLEVEL 384
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 12