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.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ruby /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
backtrace.rb
332
B
-rw-r--r--
2026-04-07 17:42
break.rb
318
B
-rw-r--r--
2026-04-07 17:42
catch.rb
324
B
-rw-r--r--
2026-04-07 17:42
chws.rb
698
B
-rw-r--r--
2026-04-07 17:42
continue.rb
263
B
-rw-r--r--
2026-04-07 17:42
debug.rb
4.39
KB
-rw-r--r--
2026-04-07 17:42
delete.rb
260
B
-rw-r--r--
2026-04-07 17:42
edit.rb
1.57
KB
-rw-r--r--
2026-04-07 17:42
finish.rb
259
B
-rw-r--r--
2026-04-07 17:42
fork.rb
671
B
-rw-r--r--
2026-04-07 17:42
help.rb
1.34
KB
-rw-r--r--
2026-04-07 17:42
info.rb
322
B
-rw-r--r--
2026-04-07 17:42
irb_info.rb
1.14
KB
-rw-r--r--
2026-04-07 17:42
load.rb
1.7
KB
-rw-r--r--
2026-04-07 17:42
ls.rb
3.38
KB
-rw-r--r--
2026-04-07 17:42
measure.rb
1.39
KB
-rw-r--r--
2026-04-07 17:42
next.rb
255
B
-rw-r--r--
2026-04-07 17:42
nop.rb
1.4
KB
-rw-r--r--
2026-04-07 17:42
pushws.rb
907
B
-rw-r--r--
2026-04-07 17:42
show_cmds.rb
969
B
-rw-r--r--
2026-04-07 17:42
show_source.rb
3.71
KB
-rw-r--r--
2026-04-07 17:42
step.rb
255
B
-rw-r--r--
2026-04-07 17:42
subirb.rb
1.36
KB
-rw-r--r--
2026-04-07 17:42
whereami.rb
461
B
-rw-r--r--
2026-04-07 17:42
Save
Rename
require_relative "nop" module IRB # :stopdoc: module ExtendCommand class Measure < Nop category "Misc" description "`measure` enables the mode to measure processing time. `measure :off` disables it." def initialize(*args) super(*args) end def execute(type = nil, arg = nil, &block) # Please check IRB.init_config in lib/irb/init.rb that sets # IRB.conf[:MEASURE_PROC] to register default "measure" methods, # "measure :time" (abbreviated as "measure") and "measure :stackprof". case type when :off IRB.conf[:MEASURE] = nil IRB.unset_measure_callback(arg) when :list IRB.conf[:MEASURE_CALLBACKS].each do |type_name, _, arg_val| puts "- #{type_name}" + (arg_val ? "(#{arg_val.inspect})" : '') end when :on IRB.conf[:MEASURE] = true added = IRB.set_measure_callback(type, arg) puts "#{added[0]} is added." if added else if block_given? IRB.conf[:MEASURE] = true added = IRB.set_measure_callback(&block) puts "#{added[0]} is added." if added else IRB.conf[:MEASURE] = true added = IRB.set_measure_callback(type, arg) puts "#{added[0]} is added." if added end end nil end end end # :startdoc: end