Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
3.0.0 /
irb /
cmd /
[ HOME SHELL ]
Name
Size
Permission
Action
chws.rb
537
B
-rw-r--r--
fork.rb
642
B
-rw-r--r--
help.rb
901
B
-rw-r--r--
info.rb
614
B
-rw-r--r--
load.rb
1.2
KB
-rw-r--r--
ls.rb
2.39
KB
-rw-r--r--
measure.rb
1.04
KB
-rw-r--r--
nop.rb
796
B
-rw-r--r--
pushws.rb
677
B
-rw-r--r--
show_source.rb
2.91
KB
-rw-r--r--
subirb.rb
661
B
-rw-r--r--
whereami.rb
362
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pushws.rb
# frozen_string_literal: false # # change-ws.rb - # $Release Version: 0.9.6$ # $Revision$ # by Keiju ISHITSUKA(keiju@ruby-lang.org) # # -- # # # require_relative "nop" require_relative "../ext/workspaces" # :stopdoc: module IRB module ExtendCommand class Workspaces < Nop def execute(*obj) irb_context.workspaces.collect{|ws| ws.main} end end class PushWorkspace < Workspaces def execute(*obj) irb_context.push_workspace(*obj) super end end class PopWorkspace < Workspaces def execute(*obj) irb_context.pop_workspace(*obj) super end end end end # :startdoc:
Close