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
# frozen_string_literal: false # # nop.rb - # $Release Version: 0.9.6$ # $Revision$ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # # :stopdoc: module IRB module ExtendCommand class Nop if RUBY_ENGINE == "ruby" && RUBY_VERSION >= "2.7.0" def self.execute(conf, *opts, **kwargs, &block) command = new(conf) command.execute(*opts, **kwargs, &block) end else def self.execute(conf, *opts, &block) command = new(conf) command.execute(*opts, &block) end end def initialize(conf) @irb_context = conf end attr_reader :irb_context def irb @irb_context.irb end def execute(*opts) #nop end end end end # :startdoc: