Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
2.3.0 /
irb /
cmd /
Delete
Unzip
Name
Size
Permission
Date
Action
chws.rb
530
B
-rw-r--r--
2016-11-21 08:58
fork.rb
635
B
-rw-r--r--
2016-11-21 08:58
help.rb
687
B
-rw-r--r--
2016-11-21 08:58
load.rb
1.19
KB
-rw-r--r--
2016-11-21 08:58
nop.rb
545
B
-rw-r--r--
2016-11-21 08:58
pushws.rb
669
B
-rw-r--r--
2016-11-21 08:58
subirb.rb
647
B
-rw-r--r--
2016-11-21 08:58
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 iterator? begin yield ensure exit end end end pid end end end end # :startdoc: