Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
rexml /
encodings /
[ HOME SHELL ]
Name
Size
Permission
Action
CP-1252.rb
4.04
KB
-rw-r--r--
EUC-JP.rb
595
B
-rw-r--r--
ICONV.rb
433
B
-rw-r--r--
ISO-8859-1.rb
134
B
-rw-r--r--
ISO-8859-15.rb
2.25
KB
-rw-r--r--
SHIFT-JIS.rb
647
B
-rw-r--r--
SHIFT_JIS.rb
36
B
-rw-r--r--
UNILE.rb
746
B
-rw-r--r--
US-ASCII.rb
654
B
-rw-r--r--
UTF-16.rb
793
B
-rw-r--r--
UTF-8.rb
268
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : UNILE.rb
module REXML module Encoding def encode_unile content array_utf8 = content.unpack("U*") array_enc = [] array_utf8.each do |num| if ((num>>16) > 0) array_enc << ?? array_enc << 0 else array_enc << (num & 0xFF) array_enc << (num >> 8) end end array_enc.pack('C*') end def decode_unile(str) array_enc=str.unpack('C*') array_utf8 = [] 0.step(array_enc.size-1, 2){|i| array_utf8 << (array_enc.at(i) + array_enc.at(i+1)*0x100) } array_utf8.pack('U*') end register(UNILE) do |obj| class << obj alias decode decode_unile alias encode encode_unile end end end end
Close