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.228
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 /
[ HOME SHELL ]
Name
Size
Permission
Action
cmap
[ DIR ]
drwxr-xr-x
glyf
[ DIR ]
drwxr-xr-x
kern
[ DIR ]
drwxr-xr-x
post
[ DIR ]
drwxr-xr-x
cmap.rb
951
B
-rw-r--r--
glyf.rb
1.91
KB
-rw-r--r--
head.rb
1.21
KB
-rw-r--r--
hhea.rb
1.08
KB
-rw-r--r--
hmtx.rb
1.31
KB
-rw-r--r--
kern.rb
2.59
KB
-rw-r--r--
loca.rb
1.17
KB
-rw-r--r--
maxp.rb
1.17
KB
-rw-r--r--
name.rb
3.67
KB
-rw-r--r--
os2.rb
2.17
KB
-rw-r--r--
post.rb
2.23
KB
-rw-r--r--
sbix.rb
1.76
KB
-rw-r--r--
simple.rb
205
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : os2.rb
require_relative '../table' module TTFunk class Table class OS2 < Table attr_reader :version attr_reader :ave_char_width attr_reader :weight_class attr_reader :width_class attr_reader :type attr_reader :y_subscript_x_size attr_reader :y_subscript_y_size attr_reader :y_subscript_x_offset attr_reader :y_subscript_y_offset attr_reader :y_superscript_x_size attr_reader :y_superscript_y_size attr_reader :y_superscript_x_offset attr_reader :y_superscript_y_offset attr_reader :y_strikeout_size attr_reader :y_strikeout_position attr_reader :family_class attr_reader :panose attr_reader :char_range attr_reader :vendor_id attr_reader :selection attr_reader :first_char_index attr_reader :last_char_index attr_reader :ascent attr_reader :descent attr_reader :line_gap attr_reader :win_ascent attr_reader :win_descent attr_reader :code_page_range attr_reader :x_height attr_reader :cap_height attr_reader :default_char attr_reader :break_char attr_reader :max_context def tag 'OS/2' end private def parse! @version = read(2, 'n').first @ave_char_width = read_signed(1) @weight_class, @width_class = read(4, 'nn') @type, @y_subscript_x_size, @y_subscript_y_size, @y_subscript_x_offset, @y_subscript_y_offset, @y_superscript_x_size, @y_superscript_y_size, @y_superscript_x_offset, @y_superscript_y_offset, @y_strikeout_size, @y_strikeout_position, @family_class = read_signed(12) @panose = io.read(10) @char_range = io.read(16) @vendor_id = io.read(4) @selection, @first_char_index, @last_char_index = read(6, 'n*') if @version > 0 @ascent, @descent, @line_gap = read_signed(3) @win_ascent, @win_descent = read(4, 'nn') @code_page_range = io.read(8) if @version > 1 @x_height, @cap_height = read_signed(2) @default_char, @break_char, @max_context = read(6, 'nnn') end end end end end end
Close