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 /
ruby24 /
lib64 /
ruby /
2.4.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
542
B
-rw-r--r--
2020-03-31 11:42
fork.rb
645
B
-rw-r--r--
2020-03-31 11:42
help.rb
697
B
-rw-r--r--
2020-03-31 11:42
load.rb
1.2
KB
-rw-r--r--
2020-03-31 11:42
nop.rb
553
B
-rw-r--r--
2020-03-31 11:42
pushws.rb
683
B
-rw-r--r--
2020-03-31 11:42
subirb.rb
663
B
-rw-r--r--
2020-03-31 11:42
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: