Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.41
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
vendor_ruby /
test /
unit /
collector /
Delete
Unzip
Name
Size
Permission
Date
Action
descendant.rb
368
B
-rwxrwxrwx
2016-03-01 23:55
dir.rb
3.2
KB
-rwxrwxrwx
2016-03-01 23:55
load.rb
5.83
KB
-rwxrwxrwx
2016-03-01 23:55
objectspace.rb
787
B
-rwxrwxrwx
2016-03-01 23:55
xml.rb
7.32
KB
-rwxrwxrwx
2016-03-01 23:55
Save
Rename
# Author:: Nathaniel Talbott. # Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved. # License:: Ruby license. require 'test/unit/collector' module Test module Unit module Collector class ObjectSpace include Collector NAME = 'collected from the ObjectSpace' def initialize(source=::ObjectSpace) super() @source = source end def collect(name=NAME) suite = TestSuite.new(name) sub_suites = [] @source.each_object(Class) do |klass| if(Test::Unit::TestCase > klass) add_suite(sub_suites, klass.suite) end end sort(sub_suites).each{|s| suite << s} suite end end end end end