2003-10-20 11:24:00 -04:00
|
|
|
require 'drb/drb'
|
|
|
|
require 'drb/extserv'
|
|
|
|
|
|
|
|
class EvalAttack
|
2005-02-13 10:13:54 -05:00
|
|
|
def initialize
|
|
|
|
@four = DRb::DRbServer.new('druby://localhost:0', self, {:safe_level => 4})
|
|
|
|
end
|
|
|
|
|
|
|
|
def four
|
|
|
|
DRbObject.new_with_uri(@four.uri)
|
|
|
|
end
|
|
|
|
|
2003-10-20 11:24:00 -04:00
|
|
|
def remote_class
|
|
|
|
DRbObject.new(self.class)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
if __FILE__ == $0
|
|
|
|
def ARGV.shift
|
|
|
|
it = super()
|
|
|
|
raise "usage: #{$0} <uri> <name>" unless it
|
|
|
|
it
|
|
|
|
end
|
|
|
|
|
|
|
|
$SAFE = 1
|
|
|
|
|
2005-02-13 10:13:54 -05:00
|
|
|
DRb.start_service('druby://localhost:0', EvalAttack.new, {:safe_level => 2})
|
2003-10-20 11:24:00 -04:00
|
|
|
es = DRb::ExtServ.new(ARGV.shift, ARGV.shift)
|
|
|
|
DRb.thread.join
|
|
|
|
end
|