Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
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 09:38
gem
894
B
-rwxr-xr-x
2015-01-25 13:16
irb
384
B
-rwxr-xr-x
2023-07-26 09:38
rackup
459
B
-rwxr-xr-x
2019-05-03 03:12
rdoc
1.51
KB
-rwxr-xr-x
2023-07-26 09:38
ri
1.46
KB
-rwxr-xr-x
2023-07-26 09:38
ruby
7
KB
-rwxr-xr-x
2023-07-26 09:40
testrb
158
B
-rwxr-xr-x
2023-07-26 09:38
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