Linux premium82.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.194 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : evicodqw
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
runit /
Delete
Unzip
Name
Size
Permission
Date
Action
cui
[ DIR ]
drwxr-xr-x
2024-11-28 18:49
assert.rb
1.8
KB
-rw-r--r--
2007-02-12 23:01
error.rb
255
B
-rw-r--r--
2007-02-12 23:01
testcase.rb
1.03
KB
-rw-r--r--
2007-02-12 23:01
testresult.rb
858
B
-rw-r--r--
2007-02-12 23:01
testsuite.rb
529
B
-rw-r--r--
2007-02-12 23:01
topublic.rb
176
B
-rw-r--r--
2007-02-12 23:01
Save
Rename
# Author:: Nathaniel Talbott. # Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved. # License:: Ruby license. require 'test/unit/testsuite' module RUNIT class TestSuite < Test::Unit::TestSuite def add_test(*args) add(*args) end def add(*args) self.<<(*args) end def count_test_cases return size end def run(result, &progress_block) progress_block = proc {} unless (block_given?) super(result, &progress_block) end end end