Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.188.246.41
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
erb
3.8
KB
-rwxr-xr-x
2023-07-26 13:45
gem
894
B
-rwxr-xr-x
2019-12-05 22:13
irb
384
B
-rwxr-xr-x
2023-07-26 13:45
rackup
459
B
-rwxr-xr-x
2019-12-05 22:13
rdoc
1.51
KB
-rwxr-xr-x
2023-07-26 13:45
ri
1.46
KB
-rwxr-xr-x
2023-07-26 13:45
ruby
7.94
KB
-rwxr-xr-x
2023-07-26 13:48
testrb
158
B
-rwxr-xr-x
2023-07-26 13:45
Save
Rename
#!/opt/alt/ruby18/bin/ruby #-- # Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others. # All rights reserved. # See LICENSE.txt for permissions. #++ # The prelude in 1.9.1 injects rubygems.rb into $LOADED_FEATURES # which prevents the `require 'rubygems'` from actually loading # the site's version of rubygems. So we have to use it's API # to get it's prelude out of the way. # if RUBY_VERSION =~ /^1\.9\.1/ && defined?(Gem::QuickLoader) Gem::QuickLoader.load_full_rubygems_library end require 'rubygems' require 'rubygems/gem_runner' require 'rubygems/exceptions' required_version = Gem::Requirement.new ">= 1.8.7" unless required_version.satisfied_by? Gem.ruby_version then abort "Expected Ruby Version #{required_version}, is #{Gem.ruby_version}" end args = ARGV.clone begin Gem::GemRunner.new.run args rescue Gem::SystemExitException => e exit e.exit_code end