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 /
ttfunk /
table /
cmap /
[ HOME SHELL ]
Name
Size
Permission
Action
format00.rb
1.51
KB
-rw-r--r--
format04.rb
3.98
KB
-rw-r--r--
format06.rb
1.33
KB
-rw-r--r--
format10.rb
1.54
KB
-rw-r--r--
format12.rb
2.09
KB
-rw-r--r--
subtable.rb
2.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subtable.rb
require_relative '../../reader' module TTFunk class Table class Cmap class Subtable include Reader attr_reader :platform_id attr_reader :encoding_id attr_reader :format ENCODING_MAPPINGS = { mac_roman: { platform_id: 1, encoding_id: 0 }.freeze, # Use microsoft unicode, instead of generic unicode, for optimal # Windows support unicode: { platform_id: 3, encoding_id: 1 }.freeze, unicode_ucs4: { platform_id: 3, encoding_id: 10 }.freeze }.freeze def self.encode(charmap, encoding) case encoding when :mac_roman result = Format00.encode(charmap) when :unicode result = Format04.encode(charmap) when :unicode_ucs4 result = Format12.encode(charmap) else raise NotImplementedError, "encoding #{encoding.inspect} is not supported" end mapping = ENCODING_MAPPINGS[encoding] # platform-id, encoding-id, offset result[:subtable] = [ mapping[:platform_id], mapping[:encoding_id], 12, result[:subtable] ].pack('nnNA*') result end def initialize(file, table_start) @file = file @platform_id, @encoding_id, @offset = read(8, 'nnN') @offset += table_start parse_from(@offset) do @format = read(2, 'n').first case @format when 0 then extend(TTFunk::Table::Cmap::Format00) when 4 then extend(TTFunk::Table::Cmap::Format04) when 6 then extend(TTFunk::Table::Cmap::Format06) when 10 then extend(TTFunk::Table::Cmap::Format10) when 12 then extend(TTFunk::Table::Cmap::Format12) end parse_cmap! end end def unicode? platform_id == 3 && (encoding_id == 1 || encoding_id == 10) && format != 0 || platform_id == 0 && format != 0 end def supported? false end def [](_code) raise NotImplementedError, "cmap format #{@format} is not supported" end private def parse_cmap! # do nothing... end end end end end require_relative 'format00' require_relative 'format04' require_relative 'format06' require_relative 'format10' require_relative 'format12'
Close