Linux server64.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
Server IP : 198.54.116.248 & Your IP : 216.73.216.104
Domains :
Cant Read [ /etc/named.conf ]
User : tailxcij
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
prism /
polyfill /
Delete
Unzip
Name
Size
Permission
Date
Action
append_as_bytes.rb
371
B
-rw-r--r--
2026-01-27 16:00
byteindex.rb
324
B
-rw-r--r--
2026-01-27 16:00
scan_byte.rb
304
B
-rw-r--r--
2026-01-27 16:00
unpack1.rb
536
B
-rw-r--r--
2026-01-27 16:00
warn.rb
987
B
-rw-r--r--
2026-01-27 16:00
Save
Rename
# frozen_string_literal: true # Polyfill for String#append_as_bytes, which didn't exist until Ruby 3.4. if !("".respond_to?(:append_as_bytes)) String.include( Module.new { def append_as_bytes(*args) args.each do |arg| arg = Integer === arg ? [arg].pack("C") : arg.b self.<<(arg) # steep:ignore end end } ) end