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.222
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby31 /
share /
ruby /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
537
B
-rw-r--r--
2025-04-28 21:06
fork.rb
642
B
-rw-r--r--
2025-04-28 21:06
help.rb
956
B
-rw-r--r--
2025-04-28 21:06
info.rb
1.07
KB
-rw-r--r--
2025-04-28 21:06
load.rb
1.2
KB
-rw-r--r--
2025-04-28 21:06
ls.rb
2.95
KB
-rw-r--r--
2025-04-28 21:06
measure.rb
1.26
KB
-rw-r--r--
2025-04-28 21:06
nop.rb
796
B
-rw-r--r--
2025-04-28 21:06
pushws.rb
677
B
-rw-r--r--
2025-04-28 21:06
show_source.rb
3.16
KB
-rw-r--r--
2025-04-28 21:06
subirb.rb
661
B
-rw-r--r--
2025-04-28 21:06
whereami.rb
362
B
-rw-r--r--
2025-04-28 21:06
Save
Rename
# frozen_string_literal: false # # fork.rb - # $Release Version: 0.9.6 $ # $Revision$ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # # :stopdoc: module IRB module ExtendCommand class Fork < Nop def execute pid = __send__ ExtendCommand.irb_original_method_name("fork") unless pid class << self alias_method :exit, ExtendCommand.irb_original_method_name('exit') end if block_given? begin yield ensure exit end end end pid end end end end # :startdoc: