Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.52
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
XML /
SAX /
PurePerl /
Delete
Unzip
Name
Size
Permission
Date
Action
Reader
[ DIR ]
drwxrwxrwx
2024-07-26 17:38
DTDDecls.pm
16.59
KB
-rw-rw-rw-
2019-06-14 03:18
DebugHandler.pm
1.83
KB
-rw-rw-rw-
2019-06-14 03:18
DocType.pm
4.55
KB
-rw-rw-rw-
2019-06-14 03:24
EncodingDetect.pm
2.57
KB
-rw-rw-rw-
2019-06-14 03:18
Exception.pm
1.67
KB
-rw-rw-rw-
2019-06-14 03:18
NoUnicodeExt.pm
628
B
-rw-rw-rw-
2019-06-14 03:18
Productions.pm
6.47
KB
-rw-rw-rw-
2019-06-14 03:18
Reader.pm
2.48
KB
-rw-rw-rw-
2019-06-14 03:18
UnicodeExt.pm
369
B
-rw-rw-rw-
2019-06-14 03:18
XMLDecl.pm
3.31
KB
-rw-rw-rw-
2019-06-14 03:18
Save
Rename
# $Id$ package XML::SAX::PurePerl; use strict; sub chr_ref { my $n = shift; if ($n < 0x80) { return chr ($n); } elsif ($n < 0x800) { return pack ("CC", (($n >> 6) | 0xc0), (($n & 0x3f) | 0x80)); } elsif ($n < 0x10000) { return pack ("CCC", (($n >> 12) | 0xe0), ((($n >> 6) & 0x3f) | 0x80), (($n & 0x3f) | 0x80)); } elsif ($n < 0x110000) { return pack ("CCCC", (($n >> 18) | 0xf0), ((($n >> 12) & 0x3f) | 0x80), ((($n >> 6) & 0x3f) | 0x80), (($n & 0x3f) | 0x80)); } else { return undef; } } 1;