Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
lib /
ruby /
vendor_ruby /
pdf /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
annotations.rb
1.97
KB
-rw-r--r--
byte_string.rb
247
B
-rw-r--r--
destinations.rb
3.02
KB
-rw-r--r--
document_state.rb
2.39
KB
-rw-r--r--
filter_list.rb
874
B
-rw-r--r--
filters.rb
760
B
-rw-r--r--
graphics_state.rb
2.29
KB
-rw-r--r--
literal_string.rb
573
B
-rw-r--r--
name_tree.rb
4.15
KB
-rw-r--r--
object_store.rb
2.22
KB
-rw-r--r--
outline_item.rb
763
B
-rw-r--r--
outline_root.rb
295
B
-rw-r--r--
page.rb
5.67
KB
-rw-r--r--
page_geometry.rb
3.77
KB
-rw-r--r--
pdf_object.rb
3.58
KB
-rw-r--r--
reference.rb
1.83
KB
-rw-r--r--
renderer.rb
7.81
KB
-rw-r--r--
stream.rb
2.07
KB
-rw-r--r--
text.rb
9.92
KB
-rw-r--r--
utils.rb
207
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : reference.rb
# frozen_string_literal: true # reference.rb : Implementation of PDF indirect objects # # Copyright April 2008, Gregory Brown. All Rights Reserved. # # This is free software. Please see the LICENSE and COPYING files for details. require 'pdf/core/utils' module PDF module Core class Reference #:nodoc: attr_accessor :gen, :data, :offset, :stream, :identifier def initialize(id, data) @identifier = id @gen = 0 @data = data @stream = Stream.new end def object output = +"#{@identifier} #{gen} obj\n" if @stream.empty? output << PDF::Core.pdf_object(data) << "\n" else output << PDF::Core.pdf_object(data.merge(@stream.data)) << "\n" << @stream.object end output << "endobj\n" end def <<(io) unless @data.is_a?(::Hash) raise 'Cannot attach stream to non-dictionary object' end (@stream ||= Stream.new) << io end def to_s "#{@identifier} #{gen} R" end # Creates a deep copy of this ref. If +share+ is provided, shares the # given dictionary entries between the old ref and the new. # def deep_copy(share = []) r = dup case r.data when ::Hash # Copy each entry not in +share+. (r.data.keys - share).each do |k| r.data[k] = Utils.deep_clone(r.data[k]) end when PDF::Core::NameTree::Node r.data = r.data.deep_copy else r.data = Utils.deep_clone(r.data) end r.stream = Utils.deep_clone(r.stream) r end # Replaces the data and stream with that of other_ref. def replace(other_ref) @data = other_ref.data @stream = other_ref.stream end end end end
Close