Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
3.1.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2022-04-12 11:11
fork.rb
642
B
-rw-r--r--
2022-04-12 11:11
help.rb
956
B
-rw-r--r--
2022-04-12 11:11
info.rb
1.07
KB
-rw-r--r--
2022-04-12 11:11
load.rb
1.2
KB
-rw-r--r--
2022-04-12 11:11
ls.rb
2.95
KB
-rw-r--r--
2022-04-12 11:11
measure.rb
1.26
KB
-rw-r--r--
2022-04-12 11:11
nop.rb
796
B
-rw-r--r--
2022-04-12 11:11
pushws.rb
677
B
-rw-r--r--
2022-04-12 11:11
show_source.rb
3.16
KB
-rw-r--r--
2022-04-12 11:11
subirb.rb
661
B
-rw-r--r--
2022-04-12 11:11
whereami.rb
362
B
-rw-r--r--
2022-04-12 11:11
Save
Rename
require_relative "nop" # :stopdoc: module IRB module ExtendCommand class Measure < Nop 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 end # :startdoc: