diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/drb/drb.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Feb 8 23:51:47 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp> + + * lib/drb/drb.rb: reject :instance_eval, :class_eval, :module_eval + [druby-ja:117] + Tue Feb 8 09:30:01 2005 Yukihiro Matsumoto <matz@ruby-lang.org> * lib/cgi.rb (CGI::Cookie): [ruby-talk:130040] diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb index 989dade22..eb68f909d 100644 --- a/lib/drb/drb.rb +++ b/lib/drb/drb.rb @@ -1391,7 +1391,7 @@ module DRb # # These methods are not callable via dRuby. INSECURE_METHOD = [ - :__send__ + :__send__, :instance_eval, :module_eval, :class_eval ] # Has a method been included in the list of insecure methods? |
