Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.222
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby33 /
share /
ruby /
irb /
command /
Delete
Unzip
Name
Size
Permission
Date
Action
backtrace.rb
262
B
-rw-r--r--
2026-04-07 17:22
base.rb
1.2
KB
-rw-r--r--
2026-04-07 17:22
break.rb
254
B
-rw-r--r--
2026-04-07 17:22
catch.rb
254
B
-rw-r--r--
2026-04-07 17:22
chws.rb
826
B
-rw-r--r--
2026-04-07 17:22
context.rb
405
B
-rw-r--r--
2026-04-07 17:22
continue.rb
259
B
-rw-r--r--
2026-04-07 17:22
debug.rb
2.23
KB
-rw-r--r--
2026-04-07 17:22
delete.rb
256
B
-rw-r--r--
2026-04-07 17:22
disable_irb.rb
292
B
-rw-r--r--
2026-04-07 17:22
edit.rb
1.65
KB
-rw-r--r--
2026-04-07 17:22
exit.rb
257
B
-rw-r--r--
2026-04-07 17:22
finish.rb
255
B
-rw-r--r--
2026-04-07 17:22
force_exit.rb
267
B
-rw-r--r--
2026-04-07 17:22
help.rb
2.86
KB
-rw-r--r--
2026-04-07 17:22
history.rb
1.09
KB
-rw-r--r--
2026-04-07 17:22
info.rb
252
B
-rw-r--r--
2026-04-07 17:22
internal_helpers.rb
793
B
-rw-r--r--
2026-04-07 17:22
irb_info.rb
1.14
KB
-rw-r--r--
2026-04-07 17:22
load.rb
2.01
KB
-rw-r--r--
2026-04-07 17:22
ls.rb
4.29
KB
-rw-r--r--
2026-04-07 17:22
measure.rb
1.35
KB
-rw-r--r--
2026-04-07 17:22
next.rb
251
B
-rw-r--r--
2026-04-07 17:22
pushws.rb
1.31
KB
-rw-r--r--
2026-04-07 17:22
show_doc.rb
1.17
KB
-rw-r--r--
2026-04-07 17:22
show_source.rb
1.84
KB
-rw-r--r--
2026-04-07 17:22
step.rb
251
B
-rw-r--r--
2026-04-07 17:22
subirb.rb
2.85
KB
-rw-r--r--
2026-04-07 17:22
whereami.rb
435
B
-rw-r--r--
2026-04-07 17:22
Save
Rename
# frozen_string_literal: true # # load.rb - # by Keiju ISHITSUKA(keiju@ruby-lang.org) # require_relative "../ext/loader" module IRB # :stopdoc: module Command class LoaderCommand < Base include RubyArgsExtractor include IrbLoader def raise_cmd_argument_error raise CommandArgumentError.new("Please specify the file name.") end end class Load < LoaderCommand category "IRB" description "Load a Ruby file." def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end def execute_internal(file_name = nil, priv = nil) raise_cmd_argument_error unless file_name irb_load(file_name, priv) end end class Require < LoaderCommand category "IRB" description "Require a Ruby file." def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end def execute_internal(file_name = nil) raise_cmd_argument_error unless file_name rex = Regexp.new("#{Regexp.quote(file_name)}(\.o|\.rb)?") return false if $".find{|f| f =~ rex} case file_name when /\.rb$/ begin if irb_load(file_name) $".push file_name return true end rescue LoadError end when /\.(so|o|sl)$/ return ruby_require(file_name) end begin irb_load(f = file_name + ".rb") $".push f return true rescue LoadError return ruby_require(file_name) end end end class Source < LoaderCommand category "IRB" description "Loads a given file in the current session." def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end def execute_internal(file_name = nil) raise_cmd_argument_error unless file_name source_file(file_name) end end end # :startdoc: end