[#18121] [Ruby 1.8.7 - Bug #405] (Open) ssl.rb:31: [BUG] Bus Error — Anonymous <redmine@...>

Issue #405 has been reported by Anonymous.

14 messages 2008/08/04

[#18130] Re: New array methods cycle, choice, shuffle (plus bug in cycle) — Brian Candler <B.Candler@...>

> Seriously though... Array.first is a noun.

10 messages 2008/08/05

[#18319] NEW Command: absolute_path() -- — "C.E. Thornton" <admin@...>

Core,

14 messages 2008/08/16
[#18321] Re: NEW Command: absolute_path() -- — Yukihiro Matsumoto <matz@...> 2008/08/18

Hi,

[#18381] [Bug #496] DRb.start_service(nil) is very slow — Hongli Lai <redmine@...>

Bug #496: DRb.start_service(nil) is very slow

11 messages 2008/08/25

[ruby-core:18341] Re: The new concept of 'trust'

From: Dave Thomas <dave@...>
Date: 2008-08-19 17:37:35 UTC
List: ruby-core #18341
On Aug 19, 2008, at 11:38 AM, Shugo Maeda wrote:

>
> In trunk, (2) objects created by untrusted code are tainted and  
> untrusted,
> and modificaions of trusted objects are not allowed at safe level 4.

Shugo:

Thanks for the explanation. What does it mean when you say "objects  
created by untrusted code are tainted and untrusted?" I tried:

dave[RUBY3/Book 11:04:03*] irb
irb(main):001:0> class Dave;end
=> nil
irb(main):002:0> Dave.untrust
=> Dave
irb(main):003:0> d = Dave.new
=> #<Dave:0x108cf4>
irb(main):004:0> d.untrusted?
=> false
irb(main):005:0> d.tainted?
=> false


Is there an example of a sandbox that uses trust?


Dave

In This Thread