aboutsummaryrefslogtreecommitdiffstats
path: root/lib/net/smtp.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-29 07:52:55 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-07-29 07:52:55 +0000
commit37b2487c7097aa72775f0f3f17f058cfc820dabd (patch)
tree35cc22bf84d65b4ec02bf15cb22df6fab7e1b813 /lib/net/smtp.rb
parent847bac1daf8d1ea2209c5dfb589e88e6db34c57b (diff)
downloadruby-37b2487c7097aa72775f0f3f17f058cfc820dabd.tar.gz
* lib/net/smtp.rb (Net::SMTP::send0): add taint check.
* ruby.h (LLONG_MIN): wrong value. * io.c (rb_f_getc): $stdin may not be IO. [ruby-dev:20973] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4206 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/smtp.rb')
-rw-r--r--lib/net/smtp.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/net/smtp.rb b/lib/net/smtp.rb
index 240b41d6c7..3991eb18b8 100644
--- a/lib/net/smtp.rb
+++ b/lib/net/smtp.rb
@@ -490,6 +490,10 @@ module Net
def send0( from_addr, to_addrs )
raise IOError, "closed session" unless @socket
raise ArgumentError, 'mail destination does not given' if to_addrs.empty?
+ raise SecurityError, 'tainted from_addr' if from_addr.tainted?
+ to_addrs.each{|to|
+ raise SecurityError, 'tainted to_addr' if to.tainted?
+ }
mailfrom from_addr
to_addrs.each do |to|