Linux srv25.usacloudserver.us 5.14.0-570.39.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Sep 4 05:08:52 EDT 2025 x86_64
LiteSpeed
Server IP : 23.137.84.82 & Your IP : 216.73.216.127
Domains :
Cant Read [ /etc/named.conf ]
User : epicgamerzoneco
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby26 /
lib64 /
ruby /
2.6.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
545
B
-rw-r--r--
2022-04-12 11:50
fork.rb
645
B
-rw-r--r--
2022-04-12 11:50
help.rb
695
B
-rw-r--r--
2022-04-12 11:50
load.rb
1.21
KB
-rw-r--r--
2022-04-12 11:50
nop.rb
553
B
-rw-r--r--
2022-04-12 11:50
pushws.rb
686
B
-rw-r--r--
2022-04-12 11:50
subirb.rb
669
B
-rw-r--r--
2022-04-12 11:50
Save
Rename
# frozen_string_literal: false # # nop.rb - # $Release Version: 0.9.6$ # $Revision: 53141 $ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # # :stopdoc: module IRB module ExtendCommand class Nop def self.execute(conf, *opts) command = new(conf) command.execute(*opts) 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: