Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
idna /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
20
B
-rw-r--r--
2017-03-07 03:22
__init__.pyc
171
B
-rw-r--r--
2022-04-21 14:56
__init__.pyo
171
B
-rw-r--r--
2022-04-21 14:56
codec.py
3.22
KB
-rw-r--r--
2017-03-07 03:22
codec.pyc
3.75
KB
-rw-r--r--
2022-04-21 14:56
codec.pyo
3.75
KB
-rw-r--r--
2022-04-21 14:56
compat.py
232
B
-rw-r--r--
2017-03-07 03:22
compat.pyc
763
B
-rw-r--r--
2022-04-21 14:56
compat.pyo
763
B
-rw-r--r--
2022-04-21 14:56
core.py
11.12
KB
-rw-r--r--
2017-03-07 03:22
core.pyc
11.23
KB
-rw-r--r--
2022-04-21 14:56
core.pyo
11.23
KB
-rw-r--r--
2022-04-21 14:56
idnadata.py
32.21
KB
-rw-r--r--
2017-03-07 03:22
idnadata.pyc
27.84
KB
-rw-r--r--
2022-04-21 14:56
idnadata.pyo
27.84
KB
-rw-r--r--
2022-04-21 14:56
intranges.py
1.71
KB
-rw-r--r--
2017-03-07 03:22
intranges.pyc
2.11
KB
-rw-r--r--
2022-04-21 14:56
intranges.pyo
2.11
KB
-rw-r--r--
2022-04-21 14:56
uts46data.py
180.6
KB
-rw-r--r--
2017-03-07 03:22
uts46data.pyc
266.24
KB
-rw-r--r--
2022-04-21 14:56
uts46data.pyo
266.24
KB
-rw-r--r--
2022-04-21 14:56
Save
Rename
from .core import encode, decode, alabel, ulabel, IDNAError import codecs import re _unicode_dots_re = re.compile(u'[\u002e\u3002\uff0e\uff61]') class Codec(codecs.Codec): def encode(self, data, errors='strict'): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return "", 0 return encode(data), len(data) def decode(self, data, errors='strict'): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return u"", 0 return decode(data), len(data) class IncrementalEncoder(codecs.BufferedIncrementalEncoder): def _buffer_encode(self, data, errors, final): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return ("", 0) labels = _unicode_dots_re.split(data) trailing_dot = u'' if labels: if not labels[-1]: trailing_dot = '.' del labels[-1] elif not final: # Keep potentially unfinished label until the next call del labels[-1] if labels: trailing_dot = '.' result = [] size = 0 for label in labels: result.append(alabel(label)) if size: size += 1 size += len(label) # Join with U+002E result = ".".join(result) + trailing_dot size += len(trailing_dot) return (result, size) class IncrementalDecoder(codecs.BufferedIncrementalDecoder): def _buffer_decode(self, data, errors, final): if errors != 'strict': raise IDNAError("Unsupported error handling \"{0}\"".format(errors)) if not data: return (u"", 0) # IDNA allows decoding to operate on Unicode strings, too. if isinstance(data, unicode): labels = _unicode_dots_re.split(data) else: # Must be ASCII string data = str(data) unicode(data, "ascii") labels = data.split(".") trailing_dot = u'' if labels: if not labels[-1]: trailing_dot = u'.' del labels[-1] elif not final: # Keep potentially unfinished label until the next call del labels[-1] if labels: trailing_dot = u'.' result = [] size = 0 for label in labels: result.append(ulabel(label)) if size: size += 1 size += len(label) result = u".".join(result) + trailing_dot size += len(trailing_dot) return (result, size) class StreamWriter(Codec, codecs.StreamWriter): pass class StreamReader(Codec, codecs.StreamReader): pass def getregentry(): return codecs.CodecInfo( name='idna', encode=Codec().encode, decode=Codec().decode, incrementalencoder=IncrementalEncoder, incrementaldecoder=IncrementalDecoder, streamwriter=StreamWriter, streamreader=StreamReader, )